Trait crypto_bigint::Concat
source · pub trait Concat<Rhs = Self> {
type Output;
// Required method
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.