concat method

Iterable<T> concat(
  1. Iterable<T> other
)

Creates the lazy concatenation of this Iterable and other.

Equivalent to Iterable.followedBy.

Implementation

Iterable<T> concat(Iterable<T> other) => followedBy(other);