enumerate method

  1. @override
RIterator<(int, T)> enumerate()

Creates an iterator which gives the current iteration count as well as the next value.

Implementation

@override
RIterator<(int, T)> enumerate() => RIterator.fromIterable(indexed);