Equivalent of RxJava's `Observable.combineLatest(....
# flow
d
Equivalent of RxJava's
Observable.combineLatest(...)
with n Flows to combine? There has to be a better way than this 👉 🧵
b
just do
Copy code
combine(
   flow1,
   flow2,
   .....
   flowN,
) { values ->  }
instead
👌 1
w
There’s top-level
combine
d
Thank you 🤦 I think I even knew this once... being top-level somehow makes it harder to find.
Hidden in plain sight