Open Zhuinden opened 2 months ago
@JvmName(name = "flowCombine") fun <T1, T2, R> Flow<T1>.combine( flow: Flow<T2>, transform: suspend (a: T1, b: T2) -> R ): Flow<R>
Should have a combineTuple variant directly to Pair.
combineTuple
Practically the same as
flow.combine(otherFlow, ::Pair)
@JvmName(name = "flowCombine") fun <T1, T2, R> Flow<T1>.combine( flow: Flow<T2>, transform: suspend (a: T1, b: T2) -> R ): Flow<R>
Should have a
combineTuple
variant directly to Pair.