pub trait ArrayMul<Rhs>: Sized { fn mul(&self, rhs: &Rhs) -> Self; }
Defines basic multiplication operation for primitive arrays
multiplication