Crate smallbitvec

source ·
Expand description

SmallBitVec is a bit vector, a vector of single-bit values stored compactly in memory.

SmallBitVec grows dynamically, like the standard Vec<T> type. It can hold up to about one word of bits inline (without a separate heap allocation). If the number of bits exceeds this inline capacity, it will allocate a buffer on the heap.

Example

use smallbitvec::SmallBitVec;

let mut v = SmallBitVec::new();
v.push(true);
v.push(false);

assert_eq!(v[0], true);
assert_eq!(v[1], false);

Macros

Structs

  • Header 🔒
    Data stored at the start of the heap allocation.
  • An iterator that owns a SmallBitVec and yields its bits as bool values.
  • An iterator that borrows a SmallBitVec and yields its bits as bool values.
  • A resizable bit vector, optimized for size and inline storage.
  • An immutable view of a range of bits from a borrowed SmallBitVec.

Enums

  • A typed representation of a SmallBitVec’s internal storage.

Constants

  • HEAP_FLAG 🔒
    If the rightmost bit of data is set, then the remaining bits of data are a pointer to a heap allocation.

Functions

  • The number of bits in one Storage.
  • buffer_len 🔒
    The minimum number of Storage elements to hold at least cap bits.
  • header_len 🔒
    The number of Storage elements to allocate to hold a header.
  • Total number of bits per word.
  • For an inline vector, all bits except two can be used as storage capacity:
  • An inline vector with the nth bit set.
  • An inline vector with the leftmost n bits set.
  • Left shift amount to access the nth bit

Type Aliases

  • Storage 🔒
    The allocation will contain a Header followed by a Storage buffer.