Trait dvec::Dot [] [src]

pub trait Dot<RHS = Self> {
    type Output;
    fn dot(self, rhs: RHS) -> Self::Output;
}

Dot product operator.

Associated Types

Required Methods

Implementors