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