Trait vector_space::DotProduct[][src]

pub trait DotProduct<T = Self>: VectorSpace {
    type Output;
    fn dot(self, other: T) -> <Self as DotProduct<T>>::Output;
}
Expand description

This trait defines the dot product.

Associated Types

The output type of the dot product.

Required methods

Computes the dot product.

Implementations on Foreign Types

Implementors