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
use bitvec;
let vec = bitvec!;
Find it cumbersome? Try this:
// The total number of bits must be a multiple of 8.
let vec = bitvec!;