forEachIndexed<R> method
Implementation
void forEachIndexed<R>(R mapper(T item, int index)) {
int i = 0;
for (final x in this) {
mapper(x, i++);
}
}
void forEachIndexed<R>(R mapper(T item, int index)) {
int i = 0;
for (final x in this) {
mapper(x, i++);
}
}