Zip<T, U> constructor

Zip<T, U>(
  1. Iterator<T> _iteratorT,
  2. Iterator<U> _iteratorU
)

Implementation

Zip(this._iteratorT, this._iteratorU) : super._late() {
  _wIterator = this;
}