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
unsafe fn unsafe_mat_mul(self, rhs: RHS) -> Matrix
[src]unsafe fn unsafe_mat_mul_lazy(self, rhs: RHS) -> MatrixMul<Self, RHS>
[src]fn mat_mul_lazy(self, rhs: RHS) -> MatrixMul<Self, RHS>
[src]Implementors
impl<LHS: MatrixShape + MatrixRawGet, RHS: MatrixShape + MatrixRawGet> MatrixMultiply<RHS> for LHS
[src]
impl<LHS: MatrixShape + MatrixRawGet, RHS: MatrixShape + MatrixRawGet> MatrixMultiply<RHS> for LHS
[src]