Type Alias FieldBits

Source
pub type FieldBits<V> = BitArray<V, Lsb0>;
Expand description

Bit representation of a field element.

Aliased Type§

#[repr(transparent)]
pub struct FieldBits<V> { pub _ord: PhantomData<Lsb0>, pub data: V, }

Fields§

§_ord: PhantomData<Lsb0>

The ordering of bits within an A::Store element.

§data: V

The wrapped data buffer.