flatMap

inline fun <E : Any, R> EntitySequence<E, *>.flatMap(transform: (E) -> Iterable<R>): List<R>(source)

Return a single list of all elements yielded from results of transform function being invoked on each element of original sequence.

The operation is terminal.

Since

3.0.0