pub trait AdditionalOps<T> {
    fn adds(&self, lhs: &Matrix<'_, T>, rhs: T) -> Matrix<'_, T>;
    fn muls(&self, lhs: &Matrix<'_, T>, rhs: T) -> Matrix<'_, T>;
    fn divs(&self, lhs: &Matrix<'_, T>, rhs: T) -> Matrix<'_, T>;
}

Required Methods

Implementations on Foreign Types

Implementors