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

Defines checked multiplication operation for primitive arrays

Required Methods

checked multiplication

Implementors