quick (trivial) question: I cannot find a way to store the output of a series of operation on an observable in an external variable. For instance something like that:
mylist = []
Observable.from_([1, 2, 3]).to_list().store(mylist)
Not sure this is very "reactive", but should be trivial.
Thanks in advance
C