Closed
Description
I'm looking for an operation which does the following:
Whenever Observable o1 emits an item, combine this item with the most recent item of Observable o2.
Illustration:
----A-------B------C-----> o1
--0----1-2----3-4--------> o2
| | |
V V V
(A,0) (B,2) (C,4)
I can't find a nice way of doing this.
Can anyone help me?
Or do we need to add a new operation to rx.Observable
?