pub trait ArrayCheckedMul<Rhs> {
    fn checked_mul(&self, rhs: &Rhs) -> Self;
}
This is supported on crate feature compute_arithmetics only.
Expand description

Defines checked multiplication operation for primitive arrays

Required methods

checked multiplication

Implementors