pub trait MatMul<Rhs = Self> {
type Output;
// Required method
fn matmul(&self, rhs: &Rhs) -> Self::Output;
}Expand description
The MatMul trait defines an interface for matrix multiplication.
pub trait MatMul<Rhs = Self> {
type Output;
// Required method
fn matmul(&self, rhs: &Rhs) -> Self::Output;
}The MatMul trait defines an interface for matrix multiplication.