parTraverseValidatedN

suspend fun <E, A, B> Iterable<A>.parTraverseValidatedN(semigroup: Semigroup<E>, n: Int, f: suspend CoroutineScope.(A) -> Validated<E, B>): Validated<E, List<B>>(source)

Traverses this Iterable and runs f in n parallel operations on Dispatchers.Default. If one or more of the f returns Validated.Invalid then all the Validated.Invalid results will be combined using semigroup.

Cancelling this operation cancels all running tasks.


suspend fun <E, A, B> Iterable<A>.parTraverseValidatedN(ctx: CoroutineContext = EmptyCoroutineContext, semigroup: Semigroup<E>, n: Int, f: suspend CoroutineScope.(A) -> Validated<E, B>): Validated<E, List<B>>(source)

Traverses this Iterable and runs f in n parallel operations on CoroutineContext. If one or more of the f returns Validated.Invalid then all the Validated.Invalid results will be combined using semigroup.

Coroutine context is inherited from a CoroutineScope, additional context elements can be specified with ctx argument. If the combined context does not have any dispatcher nor any other ContinuationInterceptor, then Dispatchers.Default is used. WARNING If the combined context has a single threaded ContinuationInterceptor, this function will not run in parallel.

Cancelling this operation cancels all running tasks.