parallelFlatMap

inline suspend fun <A, B> Iterable<A>.parallelFlatMap(crossinline f: suspend (A) -> Iterable<B>): List<B>(source)

Parallel implementation of Iterable.flatMap.

Since

extensions-lib 14