chain method

  1. @override
ChainRIterator<T> chain(
  1. Iterator<T> other
)

Takes two iterators and creates a new iterator over both in sequence.

Implementation

@override
ChainRIterator<T> chain(Iterator<T> other) => ChainRIterator(this, other);