Trait ClosedMul
alga::general
pub trait ClosedMul<Right = Self>: Sized + Mul<Right, Output = Self> + MulAssign<Right> { }
[Alias] Trait alias for Mul and MulAsign with result of type Self.
Mul
MulAsign
Self
impl<T, Right> ClosedMul<Right> for T where T: Mul<Right, Output = T> + MulAssign<Right>,