myanmarking
gsala
combineLatest
combine
public inline fun <T1, T2, T3, T4, T5, R> Flow<T1>.combineLatest( other: Flow<T2>, other2: Flow<T3>, other3: Flow<T4>, other4: Flow<T5>, crossinline transform: suspend (T1, T2, T3, T4, T5) -> R ): Flow<R> = combine(this, other, other2, other3, other4, transform)
A modern programming language that makes developers happier.