FlatMap<S, T> constructor

FlatMap<S, T>(
  1. Iterator<S> _iterator,
  2. Iterator<T> _f(
    1. S
    )
)

Implementation

FlatMap(this._iterator, this._f) : super._late() {
  _wIterator = this;
}