pub trait Dot<TRhs = Self> { type Output; // Required method fn dot(self, rhs: TRhs) -> Self::Output; }
Binary operator for the dot product operation.
Returns self · rhs.
self · rhs