combineStates

fun <T1, T2, T3, TR> combineStates(flow1: StateFlow<T1>, flow2: StateFlow<T2>, flow3: StateFlow<T3>, transform: (t1: T1, t2: T2, t3: T3) -> TR): StateFlow<TR>(source)
fun <T1, T2, T3, T4, TR> combineStates(flow1: StateFlow<T1>, flow2: StateFlow<T2>, flow3: StateFlow<T3>, flow4: StateFlow<T4>, transform: (t1: T1, t2: T2, t3: T3, t4: T4) -> TR): StateFlow<TR>(source)