pub fn mul<D: Copy + Mul<S, Output = D> + MaybeSendSync, S: Copy + MaybeSendSync, Op: ElementOp<S>>(
dest: &mut StridedViewMut<'_, D>,
src: &StridedView<'_, S, Op>,
) -> Result<()>Expand description
Element-wise multiplication: dest[i] *= src[i].
Source may have a different element type from destination.