Crate growable_bitmap

Source
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 another GrowableBitMap).

  • BitOrAssign (with another GrowableBitMap).

  • BitAnd (with another GrowableBitMap).

  • BitAndAssign (with another GrowableBitMap).

  • BitXor (with another GrowableBitMap).

  • BitXorAssign (with another GrowableBitMap).

  • When const-generics become 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§

GrowableBitMap
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.