How do I combine a `List<Flow<T>>` int...
# flow
s
How do I combine a
List<Flow<T>>
into a
Flow<List<T>>
?
f
use
combine
Copy code
val input: List<Flow<T>> = /* ..  */

val output: Flow<List<T>> = combine(input) { tees: Array<T> ->
    tees.toList()
}