forEach method

  1. @override
void forEach(
  1. void f(
    1. T element
    )
)
override

Applies the function f to each element of this collection in iteration order.

Implementation

@override
void forEach(void Function(T element) f) {
  _s.forEach(f);
}