forEach method

view source

void forEach (void f(List<T> element)) inherited

Implementation

void forEach(void f(E element)) {
  for (E element in this) f(element);
}