1 unstable release

0.1.0 Jul 17, 2020

#22 in #separator

Download history 262/week @ 2023-11-26 375/week @ 2023-12-03 92/week @ 2023-12-10 163/week @ 2023-12-17 175/week @ 2023-12-24 99/week @ 2023-12-31 156/week @ 2024-01-07 135/week @ 2024-01-14 229/week @ 2024-01-21 68/week @ 2024-01-28 146/week @ 2024-02-04 248/week @ 2024-02-11 258/week @ 2024-02-18 508/week @ 2024-02-25 329/week @ 2024-03-03 219/week @ 2024-03-10

1,357 downloads per month
Used in 3 crates (via h264-profile-level-id)

MIT/Apache

10KB
126 lines

bitpattern

bitwise pattern matching and extracting

Actions Status Crates.io Docs.rs

Usage

[dependencies]
bitpattern = "0.1.0"

Example

    let x = 0xacu8; // 10101100

    // '0' means the bit must be 0.
    // '1' means the bit must be 1.
    // '_' can be uses as separator.
    assert_eq!(bitpattern!("1010_1100", x), Some(()));
    assert_eq!(bitpattern!("1010_0100", x), None);

    // '?' means the bit can be 0 or 1.
    assert_eq!(bitpattern!("1?10_1?00", x), Some(()));

    // Other charactors can be used for extracting.
    // 'a' extracts a single bit.
    assert_eq!(bitpattern!("1a10_1100", x), Some(0));
    assert_eq!(bitpattern!("10a0_1100", x), Some(1));

    // Multi-bit extracting by continuous charactors.
    assert_eq!(bitpattern!("1aaa_a100", x), Some(5));

    // Multiple extracting.
    assert_eq!(bitpattern!("1aa0_aa00", x), Some((1, 3)));

    // If the extracting fields are adjacent, the different charactors can be used.
    assert_eq!(bitpattern!("1aab_bccc", x), Some((1, 1, 4)));

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~94KB