Trait custos_math::AdditionalOps
source · [−]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>;
}