[−][src]Trait num_traits::ops::wrapping::WrappingAdd
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.
Implementations on Foreign Types
impl<T: WrappingAdd> WrappingAdd for Wrapping<T> where
Wrapping<T>: Add<Output = Wrapping<T>>,
[src]
Wrapping<T>: Add<Output = Wrapping<T>>,