enumerate method

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

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

Implementation

@override
@pragma("vm:prefer-inline")
Iter<(int, T)> enumerate() => Iter.fromIterable(indexed);