Combine 3 flows
Receiver
Flow input flow to be combined
Return
Flow the resulting combined flow
Parameters
Flow second flow to be combined
Flow third flow to be compined
SuspendFunction3<@kotlin.ParameterName T1, @kotlin.ParameterName T2, @kotlin.ParameterName T3, R> transformation for the combine process
inline fun <T1, T2, T3, T4, T5, T6, R> combine(flow: Flow<T1>, flow2: Flow<T2>, flow3: Flow<T3>, flow4: Flow<T4>, flow5: Flow<T5>, flow6: Flow<T6>, crossinline transform: suspend (T1, T2, T3, T4, T5, T6) -> R): Flow<R> Combine 6 flows
Return
Flow the resulting combined flow
Parameters
Flow first flow to be combined
Flow second flow to be combined
Flow third flow to be combined
Flow fourth flow to be combined
Flow fifth flow to be combined
Flow sixth flow to be combined
SuspendFunction9 transformation for the combine process
inline fun <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, R> combine(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>, flow10: Flow<T10>, crossinline transform: suspend (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10) -> R): Flow<R> Combine 9 flows
Return
Flow the resulting combined flow
Parameters
Flow first flow to be combined
Flow second flow to be combined
Flow third flow to be combined
Flow fourth flow to be combined
Flow fifth flow to be combined
Flow sixth flow to be combined
Flow seventh flow to be combined
Flow eighth flow to be combined
Flow ninth flow to be combined
SuspendFunction9 transformation for the combine process