bit_seq is a convenient Rust crate that provides a procedural macro for creating bit sequences. This crate simplifies the generation of bit sequences, increasing readability and reducing the potential for errors. Bit sequences can be specified directly, via hex values, or through identifiers or integers with a specific length. It is particularly useful in systems programming and lower-level hardware or protocol interfacing where bit manipulation is common.
First, add the following to your Cargo.toml
:
toml
[dependencies]
bit_seq = "0.1.0"
Then import the crate in your Rust file:
rust
use bit_seq::bseq;
Here are some examples of how to use the bseq
macro:
```rust // Direct raw bit sequence let t = bseq!(0110 01 0 1); asserteq!(t, 0b01100101);
// Using hex values let t = bseq!(01 0x1f); asserteq!(t, 0b010001_1111);
// Using value length expression let t = bseq!(3:1 0 0xf:2); asserteq!(t, 0b10_11);
// Using variable length expression let var = 0xf; let t = bseq!(10 var:2); asserteq!(t, 0b1011); ```
You can view the full API documentation here.
Contributions to bit_seq are welcome! Please submit a pull request or create an issue on the GitHub page.
This project is licensed under the MIT license.