pub trait Dot<Rhs = Self> {
type Output;
// Required method
fn dot(self, rhs: Rhs) -> Self::Output;
}
Expand description
Perform the dot product of vectors
pub trait Dot<Rhs = Self> {
type Output;
// Required method
fn dot(self, rhs: Rhs) -> Self::Output;
}
Perform the dot product of vectors