bitmac

This library provides implementation of bitmap with custom bit accessing and resizing strategy.

crates.io docs.rs build

toml [dependencies] bitmac = "0.1"

Resizing strategy

This library provides several resizing strategy.

You can implement your own ResizingStrategy.

BitAccess

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.

Example

```rust use bitmac::{Bitmap, MinimumRequiredStrategy, LSB};

fn main() { let mut bitmap = Bitmap::, MinimumRequiredStrategy, LSB>::default();

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);

} ```

License

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.