parallelMapNotNull

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

Parallel implementation of Iterable.mapNotNull.

Since

extensions-lib 14