pub trait AddWrapped<Rhs = Self>where
    Rhs: ?Sized,{
    type Output;

    // Required method
    fn add_wrapped(&self, rhs: &Rhs) -> Self::Output;
}
Expand description

Binary operator for adding two values, wrapping the sum if an overflow occurs.

Required Associated Types§

type Output

Required Methods§

fn add_wrapped(&self, rhs: &Rhs) -> Self::Output

Implementations on Foreign Types§

§

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

§

fn add_wrapped( &self, other: &Integer<E, I> ) -> <Integer<E, I> as AddWrapped<Integer<E, I>>>::Output

Returns the sum of self and other.

§

type Output = Integer<E, I>

Implementors§