flatten method

Iterable<T> flatten()

returns a list of t from a list of list of t

Implementation

Iterable<T> flatten() => expand(id);