RVector.this

Allocates a new vector in R with v.length elements and copies the elements of v into it.

Examples

Create an RVector from a double[].

auto v = RVector([1.2, 3.4, 5.6, 7.8]);

Meta