Chain<T> constructor

Chain<T>(
  1. Iterator<T> _first,
  2. Iterator<T> _second
)

Implementation

Chain(this._first, this._second) : super._late() {
  _wIterator = this;
}