[][src]Type Definition aljabar::TruncatedVector

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

as of rustc 1.39 the trunc methodcauses an ICE and therefore had tobe removed

A Vector with one fewer dimension than N.

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