mapParallel

suspend fun <T, R> Iterable<T>.mapParallel(context: CoroutineContext = EmptyCoroutineContext, start: CoroutineStart = CoroutineStart.DEFAULT, block: suspend (T) -> R): List<R>

Execute block in parallel using operator async for each element of the collection