concat property

Iterable<T> concat

From a container of Iterable<Iterable<T>> return a Iterable<T> of their concatenation.

Implementation

Iterable<T> get concat => foldRight([], (a, e) => [...a, ...e]);