forEach method

  1. @override
void forEach(
  1. void action(
    1. E element
    )
)
override

Applies the given function to each element in the set.

This is a non-mutating iteration operation.

Implementation

@override
void forEach(void Function(E element) action) {
  value.forEach(action);
}