followedBy method

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

Returns the lazy concatenation of this iterable and other.

Implementation

@override
Iterable<T> followedBy(Iterable<T> other) => _s.followedBy(other);