snarkvm_console_account

Trait AbsWrapped

Source
pub trait AbsWrapped {
    type Output;

    // Required method
    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§

Source

fn abs_wrapped(self) -> Self::Output

Implementations on Foreign Types§

Source§

impl<E, I> AbsWrapped for Integer<E, I>
where E: Environment, I: IntegerType,

Source§

fn abs_wrapped(self) -> <Integer<E, I> as AbsWrapped>::Output

Returns the absolute value of self.

Source§

type Output = Integer<E, I>

Implementors§