RVector.empty

RVector is a range. You can use it with foreach.

  1. bool empty()
    struct RVector
    bool
    empty
    (
    )
  2. double front()
  3. void popFront()

Examples

auto v = RVector([1.1, 2.2, 3.3, 4.4, 5.5]);
foreach(val; v) {
 writeln(val);
}

Meta