Hey. Are there any existing functions for combinin...
# caching
a
Hey. Are there any existing functions for combining multiple `ValueSource`s? Let's say one of them reads value "A" and the other reads "B", which can change independently from each other, but I'm interested in their combination e.g. "A+B" Can this be declared with the existing API without `get()`ting the values, similarly to how
map()
works, which returns another
Provider
?
v
I guess you create providers from both value sources and then
zip
these together.
a
Ah, that's what I was looking for. Thank you 🙂
👌 1