Expand description
A crate providing a growable compact boolean array that can be parameterized on its storage.
See the GrowableBitMap type for more information.
§TODO:
This crate is not feature-complete at all. Below are some features I want
to add before marking it as 1.0:
-
BitOr(with anotherGrowableBitMap). -
BitOrAssign(with anotherGrowableBitMap). -
BitAnd(with anotherGrowableBitMap). -
BitAndAssign(with anotherGrowableBitMap). -
BitXor(with anotherGrowableBitMap). -
BitXorAssign(with anotherGrowableBitMap). -
When
const-genericsbecome available, possibly use them as storage ? -
[Rust 1.48.0+ / Intra-doc links]: Use intra-doc links in documentation. Right now there are no links because they’re painful to write once you’ve been introduced to the wonder intra-doc links are.
Structs§
- Growable
BitMap - A growable compact boolean array that can be parameterized on its storage.
Traits§
- BitStorage
- Types implementing this trait can be used as storage for a
GrowableBitmap.