Expand description
This crate provides a bitmatrix based on bitvec, akin to bit-matrix which is based on bit-vec.
Access can be done through the Index<usize>, Index<(usize, usize)> and
IndexMut<usize> traits. As the IndexMut trait is incompatible with proxies,
a set method is provided. Row and cell iterators are also provided.
If the serde_support feature is enabled, this type implements serde’s Serialize
and Deserialize traits.
Structs§
- BitMatrix
- A matrix of bits.