Trait lexical_util::num::Number[][src]

pub trait Number: Default + Primitive + Add<Output = Self> + AddAssign + Div<Output = Self> + DivAssign + Mul<Output = Self> + MulAssign + Rem<Output = Self> + RemAssign + Sub<Output = Self> + SubAssign {
    const IS_SIGNED: bool;
}
Expand description

Numerical type trait.

Associated Constants

If the number is a signed type.

Implementations on Foreign Types

Implementors