Trait crypto_bigint::Split[][src]

pub trait Split<Rhs = Self> {
    type Output;
    fn split(&self) -> (Self::Output, Self::Output);
}
Expand description

Split a number in half, returning the most significant half followed by the least significant.

Associated Types

Split output: high/low components of the value.

Required methods

Split this number in half, returning its high and low components respectively.

Implementors