combine9
fun <T1, T2, T3, T4, T5, T6, T7, T8, T9, R> combine9(flow: Flow<T1>, flow2: Flow<T2>, flow3: Flow<T3>, flow4: Flow<T4>, flow5: Flow<T5>, flow6: Flow<T6>, flow7: Flow<T7>, flow8: Flow<T8>, flow9: Flow<T9>, transform: suspend (T1, T2, T3, T4, T5, T6, T7, T8, T9) -> R): Flow<R>
Combines the latest values of nine flows through transform.
The resulting flow emits after every input has emitted at least once and re-emits whenever any input produces a new value. Bursts of updates may be conflated; transform always observes the latest values.