Trait xdlol::arithmetic::UnsignedArithmetic[][src]

pub trait UnsignedArithmetic where
    Self: Integer + Add<Self, Output = Self> + Sub<Self, Output = Self> + Mul<Self, Output = Self> + Div<Self, Output = Self> + Rem<Self, Output = Self> + Add<&'a Self, Output = Self> + Sub<&'a Self, Output = Self> + Mul<&'a Self, Output = Self> + Div<&'a Self, Output = Self> + Rem<&'a Self, Output = Self> + AddAssign<Self> + SubAssign<Self> + MulAssign<Self> + DivAssign<Self> + RemAssign<Self>, 
{ }

Arithmetic operations for Unsigned.

Implementors