pub trait Invert {
type Output;
// Required method
fn invert(self) -> Self::Output;
}Expand description
Converts between standard numbers and inverted ones that have the most significant digit on the outside.
pub trait Invert {
type Output;
// Required method
fn invert(self) -> Self::Output;
}Converts between standard numbers and inverted ones that have the most significant digit on the outside.