Struct fpe::ff1::BinaryNumeralString[][src]

pub struct BinaryNumeralString(_);

A numeral string with radix 2.

Methods

impl BinaryNumeralString
[src]

Creates a BinaryNumeralString from a byte slice, with each byte interpreted in little-endian bit order.

Returns a Vec, with each byte written from the BinaryNumeralString in little-endian bit order.

Trait Implementations

impl NumeralString for BinaryNumeralString
[src]

Returns whether this numeral string is valid for the base radix.

Returns the number of numerals in this numeral string.

Splits this numeral string into two sections X[..u] and X[u..].

Concatenates two numeral strings.

The number that this numeral string represents in the base radix when the numerals are valued in decreasing order of significance (big-endian order). Read more

Given a non-negative integer x less than radixm, returns the representation of x as a string of m numerals in base radix, in decreasing order of significance (big-endian order). Read more

Auto Trait Implementations