pub trait ElemMul<Rhs = Self> {
type Output;
// Required method
fn elem_mul(self, rhs: Rhs) -> Self::Output;
}
Expand description
elementwise multiplication
pub trait ElemMul<Rhs = Self> {
type Output;
// Required method
fn elem_mul(self, rhs: Rhs) -> Self::Output;
}
elementwise multiplication