Trait num_traits::ops::saturating::SaturatingMul [−][src]
pub trait SaturatingMul: Sized + Mul<Self, Output = Self> { fn saturating_mul(&self, v: &Self) -> Self; }
Performs multiplication that saturates at the numeric bounds instead of overflowing.
Required methods
fn saturating_mul(&self, v: &Self) -> Self
[src]
Saturating multiplication. Computes self * other
, saturating at the relevant high or low boundary of
the type.