pub type GenericBitArray<T, N, O = Lsb0> = BitArray<GenericArray<T, N>, O>;Available on crate feature
bitvec only.Expand description
BitArray type alias with GenericArray as the backing storage
Aliased Type§
#[repr(transparent)]pub struct GenericBitArray<T, N, O = Lsb0> {
pub _ord: PhantomData<O>,
pub data: GenericArray<T, N>,
}Fields§
§_ord: PhantomData<O>The ordering of bits within an A::Store element.
data: GenericArray<T, N>The wrapped data buffer.