Minix
5.0.0-alpha
module-common
/
dev.racci.minix.api.flow
Package-level
declarations
Functions
Functions
concurrent
Map
Link copied to clipboard
@
API
(
status
=
API.Status.EXPERIMENTAL
,
since
=
"4.0.0"
)
fun
<
T
,
R
>
Flow
<
T
>
.
concurrentMap
(
scope
:
CoroutineScope
,
concurrencyLevel
:
Int
,
transform
:
suspend
(
T
)
->
R
)
:
Flow
<
R
>
map
In
Order
Link copied to clipboard
@
API
(
status
=
API.Status.EXPERIMENTAL
,
since
=
"4.0.0"
)
inline
fun
<
T
,
R
>
Flow
<
T
>
.
mapInOrder
(
concurrencyLevel
:
Int
,
crossinline
map
:
suspend
(
T
)
->
R
)
:
Flow
<
R
>