iter method

RIterator<String> iter()

Produces an iterator over the path’s components viewed as Strings

Implementation

RIterator<String> iter() =>
    RIterator.fromIterable(components().map((e) => e.toString()));