Home
last modified time | relevance | path

Searched refs:combineUnsafe (Results 1 – 1 of 1) sorted by relevance

/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/flow/operators/
DZip.kt119 ): Flow<R> = combineUnsafe(flow, flow2, flow3) { args: Array<*> -> in combine()
156 ): Flow<R> = combineUnsafe(flow, flow2, flow3, flow4) { args: Array<*> -> in combine()
197 ): Flow<R> = combineUnsafe(flow, flow2, flow3, flow4, flow5) { args: Array<*> -> in combine()
258 private inline fun <reified T, R> combineUnsafe( in combineUnsafe() method