indexed property

RIterator<(int, T)> get indexed

Returns an RIterator over the elements of this iterable, paired with their index.

Implementation

RIterator<(int, T)> get indexed =>
    RIterator.fromIterable(IterableExtensions(this).indexed);