parallelFlatMapBlocking

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

Deprecated

Source developers should define their own extension functions for more flexibility

Thread-blocking parallel implementation of Iterable.flatMap.

Since

extensions-lib 14