followedBy method

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

Creates the lazy concatenation of this Iterator and other

Implementation

@override
@pragma("vm:prefer-inline")
Iter<T> followedBy(Iterable<T> other) =>
    Iter.fromIterable(super.followedBy(other));