[−][src]Trait num_traits::WrappingMul
Performs multiplication that wraps around on overflow.
Required methods
fn wrapping_mul(&self, v: &Self) -> Self
Wrapping (modular) multiplication. Computes self * other
, wrapping around at the boundary
of the type.
Implementations on Foreign Types
impl WrappingMul for usize
[src]
pub fn wrapping_mul(&self, v: &usize) -> usize
[src]
impl<T> WrappingMul for Wrapping<T> where
T: WrappingMul,
Wrapping<T>: Mul<Wrapping<T>>,
<Wrapping<T> as Mul<Wrapping<T>>>::Output == Wrapping<T>,
[src]
T: WrappingMul,
Wrapping<T>: Mul<Wrapping<T>>,
<Wrapping<T> as Mul<Wrapping<T>>>::Output == Wrapping<T>,