1/// Perform the dot product of vectors 2pub trait Dot<Rhs = Self> { 3 type Output; 4 fn dot(self, rhs: Rhs) -> Self::Output; 5}