pub trait SplitMixed<Lo, Hi> {
// Required method
fn split_mixed(&self) -> (Lo, Hi);
}
Expand description
Split a number into parts, returning the least significant part followed by the most significant.
Required Methods§
Sourcefn split_mixed(&self) -> (Lo, Hi)
fn split_mixed(&self) -> (Lo, Hi)
Split this number into parts, returning its low and high components respectively.