chain method

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

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

Implementation

@override
@pragma("vm:prefer-inline")
Chain<T> chain(Iterator<T> other) => Chain(this, other);