forEach method

Method<List<X>, O> forEach(
  1. Consumer<X> consumer
)

Implementation

Method<List<X>, O> forEach(final Consumer<X> consumer) => this.also((l) => l.forEach(consumer));