[][src]Trait num_traits::ops::wrapping::WrappingAdd

pub trait WrappingAdd: Sized + 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 u8[src]

impl WrappingAdd for u16[src]

impl WrappingAdd for u32[src]

impl WrappingAdd for u64[src]

impl WrappingAdd for usize[src]

impl WrappingAdd for u128[src]

impl WrappingAdd for i8[src]

impl WrappingAdd for i16[src]

impl WrappingAdd for i32[src]

impl WrappingAdd for i64[src]

impl WrappingAdd for isize[src]

impl WrappingAdd for i128[src]

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

Loading content...

Implementors

Loading content...