A simple crate which provides the BitField
trait, which provides methods for operating on individual bits and ranges
of bits on Rust's integral types.
Documentation is available on docs.rs
TOML
[dependencies]
bit_field = "0.7.0"
```rust extern crate bitfield; use bitfield::BitField;
let mut x: u8 = 0; let msb = x.bit_length() - 1;
x.setbit(msb, true); asserteq!(x, 0b1000_0000);
x.setbits(0..4, 0b1001); asserteq!(x, 0b1000_1001);
```
This crate is dual-licensed under MIT or the Apache License (Version 2.0). See LICENSE-APACHE and LICENSE-MIT for details.