pub trait ArgminDot<T, U> {
    fn dot(&self, other: &T) -> U;
}
Expand description

Dot/scalar product of T and self

Required methods

Dot/scalar product of T and self

Implementations on Foreign Types

Implementors