Construct Vector directly from static array, inferring element type.
auto v = [1, 2, 3].vector; assert(v.elements == [1, 2, 3]); assert(is(typeof(v) == Vector!(int, 3)));
See Implementation
Construct Vector directly from static array, inferring element type.