pub trait AbsWrapped {
    type Output;

    fn abs_wrapped(self) -> Self::Output;
}
Expand description

Unary operator for retrieving the absolute value, wrapping the result if an overflow occurs.

Required Associated Types

Required Methods

Implementations on Foreign Types

Returns the absolute value of self.

Implementors