parallelCatchingFlatMap

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

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

Since

extensions-lib 14