pub trait Dot<TRhs = Self> {
    type Output;

    fn dot(self, rhs: TRhs) -> Self::Output;
}
Expand description

Binary operator for the dot product operation.

Required Associated Types

Required Methods

Returns self · rhs.

Implementors