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

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

Performs addition that wraps around on overflow.

Required methods

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

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

Implementations on Foreign Types

impl WrappingAdd for i16[src]

pub fn wrapping_add(&self, v: &i16) -> i16[src]

impl WrappingAdd for u128[src]

pub fn wrapping_add(&self, v: &u128) -> u128[src]

impl WrappingAdd for u64[src]

pub fn wrapping_add(&self, v: &u64) -> u64[src]

impl WrappingAdd for i128[src]

pub fn wrapping_add(&self, v: &i128) -> 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]

pub fn wrapping_add(&self, v: &Wrapping<T>) -> Wrapping<T>[src]

impl WrappingAdd for usize[src]

pub fn wrapping_add(&self, v: &usize) -> usize[src]

impl WrappingAdd for i64[src]

pub fn wrapping_add(&self, v: &i64) -> i64[src]

impl WrappingAdd for u32[src]

pub fn wrapping_add(&self, v: &u32) -> u32[src]

impl WrappingAdd for i32[src]

pub fn wrapping_add(&self, v: &i32) -> i32[src]

impl WrappingAdd for isize[src]

pub fn wrapping_add(&self, v: &isize) -> isize[src]

impl WrappingAdd for i8[src]

pub fn wrapping_add(&self, v: &i8) -> i8[src]

impl WrappingAdd for u8[src]

pub fn wrapping_add(&self, v: &u8) -> u8[src]

impl WrappingAdd for u16[src]

pub fn wrapping_add(&self, v: &u16) -> u16[src]

Implementors