RVector is a range. You can use it with foreach.
auto v = RVector([1.1, 2.2, 3.3, 4.4, 5.5]); foreach(val; v) { writeln(val); }
See Implementation
RVector is a range. You can use it with foreach.