deep For Each
Given an Iterable receiver, run the normal forEach operation to produce a series of values, apply the extractor extension function to each of those values to produce an Iterable for each of them, and run forEach on those Iterables, in order, using the body function.
Receiver
The outer Iterable to visit.
Parameters
A transformation from values produced by the receiver to an Iterable that should be visited with the body.
Given an Iterable receiver, run the normal forEach operation to produce a series of values, apply the extractor1 extension function to each of those values to produce an Iterable for each of them, run the extractor2 extension function to produce an Iterable to run forEach on, with the body function.
and run forEach on those Iterables, in order.
Receiver
The outer Iterable to visit.
Parameters
A transformation from values produced by the receiver to an Iterable that should be visited.
A transformation from values produced by the extractor1's iterator, to an Iterable that should be visited with the body.
The function to run with each value produced by each of the invocations of the extractor2 on each element produced by the extractor1 on each element of the receiver Iterable.