parallelCatchingFlatMapBlocking

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

Thread-blocking parallel implementation of Iterable.flatMap, but running the transformation function inside a try-catch block.

Since

extensions-lib 14