Home
last modified time | relevance | path

Searched defs:onEach (Results 1 – 2 of 2) sorted by relevance

/external/kotlinx.coroutines/test-utils/common/src/
DLaunchFlow.kt21 internal var onEach: Handler<T>? = null in <lambda>() variable in kotlinx.coroutines.testing.flow.LaunchFlowBuilder
27 public fun onEach(action: suspend CoroutineScope.(value: T) -> Unit) { in <lambda>() method in kotlinx.coroutines.testing.flow.LaunchFlowBuilder
53 internal var onEach: Handler<T>, variable in kotlinx.coroutines.testing.flow.Handlers
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/flow/operators/
DTransform.kt74 public fun <T> Flow<T>.onEach(action: suspend (T) -> Unit): Flow<T> = transform { value -> in onEach() method