followedBy method

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

Appends all elements of other to the end of this iterable's elements.

Implementation

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