You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 24, 2021. It is now read-only.
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>
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
An operator for
Flow<A>
to execute asuspend (A) -> B
function in parallel for every element. It should make use ofDEFAULT_CONCURRENCY
to make the amount of parallel operations configurable.The text was updated successfully, but these errors were encountered: