A small crate implementing bitmap functionality around primitive Rust unsigned integers. I ended up making this after wanting a simple data structure to use for bit flags. Other options definitely exist such as bitmap
and bitmaps
, but they looked intimidating, and besides, I just wanted to make a crate I was willing to publish!
These bitmaps are simply for when you want a data structure to hold boolean flags, which can be AND-ed, OR-ed and XOR-ed together, in as compressed a format as possible, while still holding enough functionality to easily view the bitmap for display, or get a particular bit.
u8
up to u128
, along with a wrapper for usize
(BitmapArch
).Display
to show the bitmap in all its 1's and 0's glory. (May end up changing this to the Debug
trait however, that'll have to be something to think about before releasing 1.0.0).Easy conversion between a Bitmap
and the integer type it's associated with. For example, a Bitmap64
and a u64
can easily be converted back and forth like the following:
```rust use fixed_bitmaps::Bitmap64;
let mut bitmap = Bitmap::from(53);
// Use and mutate bitmap as much as you like
// Get the resulting u64 value back easily let finalvalue = bitmap.tou64(); ```
Contributions are always welcome, whether for better documentation, bugfixing or optimizations in the code itself!