Trait crypto_bigint::Split
source · pub trait Split<Rhs = Self> {
type Output;
// Required method
fn split(&self) -> (Self::Output, Self::Output);
}
Expand description
Split a number in half, returning the most significant half followed by the least significant.