logo
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.

Required 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