Expand description
This crate is a simple bitfield that can be used to track presence or absence of elements in a known collection of a specified size.
Under the hood it uses unsigned integers. The bits represent presence of absence of elements. No reference to a collection is made explicitly.
Structs§
- BitField
- A bitfield type.
- BitField
Index - An index type.
- BitField
Size - A size type.
- Indexed
BitField
Type Aliases§
- Indexed
BitField8 - Type alias for an
IndexedBitField
with at most 8 items. - Indexed
BitField16 - Type alias for an
IndexedBitField
with at most 16 items. - Indexed
BitField32 - Type alias for an
IndexedBitField
with at most 32 items. - Indexed
BitField64 - Type alias for an
IndexedBitField
with at most 64 items. - Indexed
BitField128 - Type alias for an
IndexedBitField
with at most 128 items.