Vector.VecType

Alias to vector type. Can be used to contruct vectors of same type

auto rvec7 = Vector!(real, 7)(10);
auto rvec7s = rvec7.VecType(20);
struct Vector(T, size_t N)
alias VecType = Vector!(T, N)

Meta