Searched defs:onEach (Results 1 – 2 of 2) sorted by relevance
/external/kotlinx.coroutines/test-utils/common/src/ | ||
D | LaunchFlow.kt | 21 internal var onEach: Handler<T>? = null in <lambda>() variable in kotlinx.coroutines.testing.flow.LaunchFlowBuilder |
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/flow/operators/ | ||
D | Transform.kt | 74 public fun <T> Flow<T>.onEach(action: suspend (T) -> Unit): Flow<T> = transform { value -> in onEach() method |