parallelForEach

inline suspend fun <A> Iterable<A>.parallelForEach(    parallelism: Int,     start: CoroutineStart = CoroutineStart.DEFAULT,     crossinline action: suspend (A) -> Unit)(source)

Iterates this Iterable with a given parallelism, passing the value for each emission to the given action.