Trait ilattice::vector::Vector[][src]

pub trait Vector: 'static + Sized + Copy + Splat<Self::Scalar> + Map<Self::Scalar> + ZipMap<Self::Scalar> + Fold<Self::Scalar> + Ones + Zero + VectorArithmetic<Self::Scalar> + LatticeOrder + Min<Self::Scalar> + Max<Self::Scalar> + PartialEq {
    type Scalar: Scalar;
    fn is_positive(self) -> bool { ... }
}
Expand description

A vector over the scalar field Self::Scalar.

Associated Types

Provided methods

Implementations on Foreign Types

Implementors