parallel Catching Flat Map
inline suspend fun <A, B> Iterable<A>.parallelCatchingFlatMap(crossinline f: suspend (A) -> Iterable<B>): List<B>(source)
Deprecated
Source developers should define their own extension functions for more flexibility
Parallel implementation of Iterable.flatMap, but running the transformation function inside a try-catch block.
Since
extensions-lib 14