vector-space 0.3.1

Useful traits for working with vector spaces
Documentation
use crate::VectorSpace;

/// This trait defines the outer product.
pub trait OuterProduct<T = Self>: VectorSpace {
    /// The output type of the outer product.
    type Output;

    /// The outer product.
    fn outer(self, other: T) -> <Self as OuterProduct<T>>::Output;
}

impl OuterProduct for f32 {
    type Output = f32;
    fn outer(self, other: Self) -> f32 {
        self * other
    }
}

impl OuterProduct for f64 {
    type Output = f64;
    fn outer(self, other: Self) -> f64 {
        self * other
    }
}