pub trait FixedWidthSignedInteger: FixedWidthUnsignedInteger + Neg<Output = Self> {
    fn fixed_abs(self) -> Self;
}
Expand description

Trait for an integer that includes negation

Required Methods§

Returns the absolute value of the number

Implementations on Foreign Types§

Implementors§