Trait vectors::Vector [] [src]

pub trait Vector<Scalar>: PartialEq + VectorOps<Self, Scalar> {
    type Scalar;
}

The base trait for vector types, covering comparisons, basic numeric operations, and the dot product.

Associated Types

The type of the Vector's scalar components.

Implementors