smallbitvec
A bit vector that is only one word wide, and can store data either inline or on the heap. Like the bit-vec
crate but optimized for small inline size and reduced allocations.
Category: Rust / Data structures |
Watchers: 17 |
Star: 35 |
Fork: 13 |
Last update: Nov 21, 2023 |
A bit vector that is only one word wide, and can store data either inline or on the heap. Like the bit-vec
crate but optimized for small inline size and reduced allocations.
SmallBitVec::new
a const fn.last
method.into_storage
and from_storage
methods (#17).truncate
and resize
(#15)