This library provides implementation of bitmap with custom bit accessing and resizing strategy.
toml
[dependencies]
bitmac = "0.2"
bytes
- implemented trait ContainerMut
for BytesMut
smallvec
- implemented trait ContainerMut
for SmallVec
```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.