pub trait Matmul<Rhs = Self> {
type Output;
// Required method
fn matmul(&self, rhs: &Rhs) -> Self::Output;
}
Expand description
A trait denoting objects capable of matrix multiplication.
pub trait Matmul<Rhs = Self> {
type Output;
// Required method
fn matmul(&self, rhs: &Rhs) -> Self::Output;
}
A trait denoting objects capable of matrix multiplication.