Vector default constructor.
{ // Creating a vector with accessors auto v = Vector!(3, int, "xyz")(1, 2, 3); // Testing accessor methods. assert (v.x == 1); assert (v.y == 2); assert (v.z == 3);
See Implementation
Vector default constructor.