chain method
Takes two iterators and creates a new iterator over both in sequence.
Implementation
@override
ChainRIterator<T> chain(Iterator<T> other) => ChainRIterator(this, other);
Takes two iterators and creates a new iterator over both in sequence.
@override
ChainRIterator<T> chain(Iterator<T> other) => ChainRIterator(this, other);