[][src]Type Definition aljabar::TruncatedVector

type TruncatedVector<T, const N: usize> = Vector<T, { N - 1 }>;

A Vector with one fewer dimension than N.

Not particularly useful other than as the return value of the trunc method.