RIntVector.array

Create a new int[] and copy the contents of the current RIntVector into it.

struct RIntVector
int[]
array
(
)

Examples

auto v = RIntVector([1, 2, 3, 4, 5]);
int[] arr = v.array;

Meta