followedBy method

  1. @override
RIterator<T> followedBy(
  1. Iterable<T> other
)
override

Creates the lazy concatenation of this Iterator and other

Implementation

@override
RIterator<T> followedBy(Iterable<T> other) =>
    RIterator.fromIterable(super.followedBy(other));