bitarray
The simple and naive rust implementation of a bit array.
Install
...
bitarray = { git = "https://github.com/obakhmach/bitarray", branch = "<desired-branch>", version = "<desired-version>"}
For example for dev branch with version 0.1.0 the dependecy will look the following.
...
bitarray = { git = "https://github.com/obakhmach/bitarray", branch = "dev", version = "0.1.0"}
Or as a registered create
...
bitarray = "0.1.0"
Usage
use BitArray;
let bitarray_size: i64 = 9999;
let mut bitarray: BitArray = new;
bitarray.set.unwrap;
let bitarray_value: bool = bitarray.get.unwrap;