[][src]Trait bee_crypto::ternary::bigint::binary_representation::BinaryRepresentation

pub trait BinaryRepresentation: Sealed + Clone {
    type Inner;
    fn iter(&self) -> Iter<Self::Inner>;
}

Binary representation of a big integer.

Associated Types

type Inner

Inner representation type of the big integer.

Loading content...

Required methods

fn iter(&self) -> Iter<Self::Inner>

Iterates over a slice of the inner representation type of the big integer.

Loading content...

Implementors

impl BinaryRepresentation for U32Repr[src]

type Inner = u32

impl BinaryRepresentation for U8Repr[src]

type Inner = u8

Loading content...