Converts the vector into an array of the same size.
assert(cast(int[])vector(1, 2) == [1, 2]); assert(cast(long[])vector(.1, 1.5, -.1) == [0L, 1L, 0L]);
See Implementation
Converts the vector into an array of the same size.