Fixed Bitmaps

Build Status API crates.io crates.io

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.

Features

Code examples

```rust use fixed_bitmaps::Bitmap64;

// Multiple ways to create a new bitmap let empty = Bitmap64::default(); let full = Bitmap64::from(u64::MAX);

// Equivalent ways to create a bitmap with last bits 1001 let bitmap = Bitmap64::from(9); let bitmap = Bitmap64::from(0b1001);

// Sets the 7th least significant bit when creating a new // bitmap (indexing starts at 0) let mut bitmap = Bitmap64::from_set(6).unwrap();

// Use the set() method to work with specific bits bitmap.set(6, false).unwrap(); bitmap.set(42, true).unwrap();

// Use get() to know the value of a specific bit println!("Bit at index 42: {}", bitmap.get(42).unwrap());

// Freely use boolean operators &, |, and ^ let bitmap1 = Bitmap64::from(0b1001); let bitmap2 = Bitmap64::from(0b1010);

let and = bitmap1 & bitmap2; let or = bitmap1 | bitmap2; let xor = bitmap1 ^ bitmap2;

// The following also works exactly the same let and = bitmap1 & 0b1010; let or = bitmap1 | 0b1010; let xor = bitmap1 ^ 0b1010;

// Aritmetic operators are currently used as exactly that, the following is // guarunteed to continue working as it does let add = bitmap1 + 10; let sub = bitmap1 - 4; let mul = bitmap2 * 2; let div = bitmap2 / 2;

// The following work exactly as above, but are likely to change in favour of // set operations in the major update to 1.0.0 let add = bitmap1 + Bitmap64::from(10); let sub = bitmap1 - Bitmap64::from(4); let mul = bitmap2 * Bitmap64::from(2); let div = bitmap2 / Bitmap64::from(2);

// Left and right shifts work exactly as they do with integers let lsh = bitmap1 << 3; let rsh = bitmap2 >> 1; ```

To be done

Contributions

Contributions are always welcome, whether for better documentation, bugfixing or optimizations in the code itself!