BitArray - A Simple Bit Array Implementation in Rust
bit-array-rs
is a Rust library that provides a simple and efficient implementation of a bit array. A bit array (or bit vector) is a data structure that compactly stores bits (0s and 1s).
Installation
Add the following to your Cargo.toml
:
[dependencies]
bit-array-rs = "0.0.3"
Usage
Creating a BitArray
use bit_array_rs::BitArray;
fn main() {
let mut bit_array = BitArray::new(16);
bit_array.set(3);
bit_array.set(7);
println!("{:?}", bit_array); println!("{}", bit_array); }
Setting and Unsetting Bits
use bit_array_rs::BitArray;
fn main() {
let mut bit_array = BitArray::new(8);
bit_array.set(2);
bit_array.unset(2);
assert_eq!(bit_array[2], false);
bit_array.set_bit(2, true);
assert_eq!(bit_array[2], true);
}
Finding the First Set/Unset Bit
use bit_array_rs::BitArray;
fn main() {
let mut bit_array = BitArray::new(16);
bit_array.set(3);
bit_array.set(5);
assert_eq!(bit_array.first_unset_bit(), Some(0));
assert_eq!(bit_array.first_set_bit(), Some(3));
}
Debug and Display
use bit_array_rs::BitArray;
fn main() {
let mut bit_array = BitArray::new(16);
bit_array.set(3);
bit_array.set(7);
bit_array.set(9);
bit_array.set(15);
println!("{:?}", bit_array); println!("{}", bit_array); }
License
This project is licensed under the MIT License - see the LICENSE file for details.