Trait algebloat::traits::MatrixMultiply[−][src]

pub trait MatrixMultiply<RHS> where
    Self: Sized, 
{ unsafe fn unsafe_mat_mul(self, rhs: RHS) -> Matrix;
unsafe fn unsafe_mat_mul_lazy(self, rhs: RHS) -> MatrixMul<Self, RHS>;
fn mat_mul(self, rhs: RHS) -> Matrix;
fn mat_mul_lazy(self, rhs: RHS) -> MatrixMul<Self, RHS>; }

Required methods

Implementors