forEach method
- void action(
- E element
override
Applies the function f to each element of this collection in iteration order.
Implementation
void forEach(void action(E element)) {
int length = this.length;
for (int i = 0; i < length; i++) {
action(this[i]);
if (length != this.length) {
throw ConcurrentModificationError(this);
}
}
}
© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dart.dev/stable/2.13.0/dart-collection/ListMixin/forEach.html