Trait crypto_bigint::Concat[][src]

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

Concatenate two numbers into a “wide” twice-width value, using the rhs value as the least significant value.

Associated Types

Concatenated output: twice the width of Self.

Required methods

Concate the two values, with self as most significant and rhs as the least significant.

Implementors