This library provides implementation of bitmap with custom bit accessing and resizing strategy.
toml
[dependencies]
bitmac = "0.1"
This library provides several resizing strategy.
MinimalRequiredStrategy
- resize to minimum required bytesFixedStrategy
- advance size by fixed stepsStaticStrategy
- never increases the size, returns an error if an increase is required, useful for const containers ([u8; N]
)You can implement your own ResizingStrategy
.
The bytes in a bitmap can be stored in LSB or MSB order. In LSB order, the 0th bit of the bitmap is the least significant bit, i.e. 0b0000_0001
it means that bitmap.get(0) == true
and on the other hand for the MSB (most significant bit) order, this means that bitmap.get(7) == true
.
```rust use bitmac::{Bitmap, MinimumRequiredStrategy, LSB};
fn main() {
let mut bitmap = Bitmap::
assert_eq!(bitmap.as_bytes().len(), 0);
bitmap.set(0, true);
bitmap.set(7, true);
assert_eq!(bitmap.as_bytes().len(), 1);
bitmap.set(15, true);
assert_eq!(bitmap.as_bytes().len(), 2);
assert!(bitmap.get(0));
assert!(bitmap.get(7));
assert!(bitmap.get(15));
assert!(!bitmap.get(1));
assert!(!bitmap.get(8));
assert!(!bitmap.get(300));
assert_eq!(bitmap.as_bytes().len(), 2);
} ```
Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.