Trait vectors::VectorOps [] [src]

pub trait VectorOps<Vector, Scalar>: Sized + Add<Vector, Output = Self> + Sub<Vector, Output = Self> + Mul<Scalar, Output = Self> + Div<Scalar, Output = Self> + MulAdd<Scalar, Vector, Output = Self> { }

The trait for vector types implementing basic numeric operations.

Implementors