macro_rules! bitbox {
($($arg:tt)*) => { ... };
}Expand description
Constructs a new BitBox from a bit-pattern description.
This forwards all its arguments to bitvec!, and then calls
.into_boxed_bitslice() on the result to freeze the allocation.