arrow-fx
arrow-fx copied to clipboard
Flow parEffectMap
An operator for Flow<A> to execute a suspend (A) -> B function in parallel for every element. It should make use of DEFAULT_CONCURRENCY to make the amount of parallel operations configurable.
fun <A, B> Flow<A>.parEffectMap(f: (A) -> B): Flow<B>