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

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

bee-crypto will not be supported in future versions. You can use functions from iota-crypto instead.

Expand description

Binary representation of a big integer.

Associated Types

👎 Deprecated:

bee-crypto will not be supported in future versions. You can use functions from iota-crypto instead.

Inner representation type of the big integer.

Required methods

👎 Deprecated:

bee-crypto will not be supported in future versions. You can use functions from iota-crypto instead.

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

Implementors