NumOps

Trait Alias NumOps 

Source
trait NumOps<Rhs = Self, Output = Self> = Add<Rhs, Output = Output>
    + Sub<Rhs, Output = Output>
    + Mul<Rhs, Output = Output>
    + Div<Rhs, Output = Output>
    + Rem<Rhs, Output = Output>;
Expand description