Macro bitvec::bitbox [−][src]
macro_rules! bitbox {
($($arg : tt) *) => { ... };
}
Expand description
Constructs a BitBox
out of a literal array in source code, like bitvec!
.
This has exactly the same syntax as bitvec!
, and in fact is a thin wrapper
around bitvec!
that calls .into_boxed_slice()
on the produced BitVec
to
freeze it.