pub trait ConcatMixed<Lo: ?Sized = Self> {
type MixedOutput;
// Required method
fn concat_mixed(&self, lo: &Lo) -> Self::MixedOutput;
}
Expand description
Concatenate two numbers into a “wide” combined-width value, using the lo
value as the least significant value.
Required Associated Types§
Sourcetype MixedOutput
type MixedOutput
Concatenated output: combination of Lo
and Self
.
Required Methods§
Sourcefn concat_mixed(&self, lo: &Lo) -> Self::MixedOutput
fn concat_mixed(&self, lo: &Lo) -> Self::MixedOutput
Concatenate the two values, with self
as most significant and lo
as the least significant.