[][src]Macro bitvec::bitbox

macro_rules! bitbox {
    ($($arg:tt)*) => { ... };
}

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.