pub type FieldBits<V> = BitArray<V, Lsb0>;
Expand description
Bit representation of a field element.
Aliased Type§
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.