Skip to main content

Crate simple_bitset

Crate simple_bitset 

Source
Expand description

§simple-bitset Crate license License open source

Simple no-std compatible 64-bit and 128-bit bitsets for embedded applications“.

  1. BitSet64 - for storing up to 64 bits.
  2. BitSet128 - for storing up to 128 bits.

BitSet64 uses a (u64) singlet for its underlying storage.
BitSet128 uses a (u64, u64) duplet for its underlying storage.

§License

Licensed under either of

at your option.

Structs§

BitSet64
A memory-efficient 64-bit set for embedded environments. Note that it data is a singlet: this makes comparison with BitSet128 duplet clearer.
BitSet64Iter
BitSet128
A memory-efficient 128-bit set for embedded environments.
BitSet128Iter