runAll<T> function

Iterable<T> runAll<T>(
  1. void doFunction(
    1. Iterable<T> value
    ),
  2. Iterable<T> next
)

Implementation

Iterable<T> runAll<T>(
    void Function(Iterable<T> value) doFunction, Iterable<T> next) {
  doFunction(next);
  return next;
}