bitvek
Say, we have a bit vector —
it's nothing better than a Vec<bool>, but …
what if we implement it,
and save some poor bits of memory?
Quick Start
The following vector only takes two bytes of the heap memory!
use bitvec;
let vec = bitvec!;
Find it cumbersome? Try this:
// requires the total number of bits to be a multiple of 8
let vec = bitvec!;