SaturatingMul

Performs multiplication that saturates at the numeric bounds instead of overflowing.

Fully qualified path: core::num::traits::ops::saturating::SaturatingMul

pub trait SaturatingMul<T>

Trait functions

saturating_mul

Saturating multiplication. Computes self * other, saturating at the relevant high or low boundary of the type.

Fully qualified path: core::num::traits::ops::saturating::SaturatingMul::saturating_mul

fn saturating_mul(self: T, other: T) -> T