Trait aurum_numeric::MachineInt [] [src]

pub trait MachineInt: Copy + Sized + Add<Output=Self> + Sub<Output=Self> + Mul<Output=Self> + Div<Output=Self> + Rem<Output=Self> {
    fn is_signed() -> bool;
    fn max_value() -> Self;
    fn min_value() -> Self;
    fn precision() -> usize;
}

Trait implemented by machine scalars.

Required Methods

Implementors