[][src]Trait argmin::prelude::WrappingAdd

pub trait WrappingAdd: Add<Self, Output = Self> {
    fn wrapping_add(&self, v: &Self) -> Self;
}

Performs addition that wraps around on overflow.

Required methods

fn wrapping_add(&self, v: &Self) -> Self

Wrapping (modular) addition. Computes self + other, wrapping around at the boundary of the type.

Loading content...

Implementations on Foreign Types

impl WrappingAdd for i32[src]

impl WrappingAdd for i64[src]

impl WrappingAdd for u32[src]

impl WrappingAdd for u128[src]

impl WrappingAdd for u8[src]

impl WrappingAdd for isize[src]

impl WrappingAdd for u64[src]

impl WrappingAdd for i16[src]

impl WrappingAdd for usize[src]

impl WrappingAdd for i128[src]

impl<T> WrappingAdd for Wrapping<T> where
    T: WrappingAdd,
    Wrapping<T>: Add<Wrapping<T>>,
    <Wrapping<T> as Add<Wrapping<T>>>::Output == Wrapping<T>, 
[src]

impl WrappingAdd for u16[src]

impl WrappingAdd for i8[src]

Loading content...

Implementors

Loading content...