mapEager

fun <T, R> Flow<T>.mapEager(concurrency: Int = DEFAULT_CONCURRENCY, transform: suspend (value: T) -> R): Flow<R>(source)

Returns a flow containing the results of applying the given transform function. Transformations performed parallel with given concurrency limit and preserving the order of elements.