enumerate method
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);
Creates an iterator which gives the current iteration count as well as the next value.
@override
@pragma("vm:prefer-inline")
Iter<(int, T)> enumerate() => Iter.fromIterable(indexed);