WrappingMul
Performs multiplication that wraps around on overflow.
Fully qualified path: core::num::traits::ops::wrapping::WrappingMul
pub trait WrappingMul<T>
Trait functions
wrapping_mul
Wrapping (modular) multiplication. Computes self * other
, wrapping around at the boundary of the type.
Fully qualified path: core::num::traits::ops::wrapping::WrappingMul::wrapping_mul
fn wrapping_mul(self: T, v: T) -> T