Open
Description
Currently the simplest way to perform custom transformations of streams is to use the transform
method.
someStream.transform(debounce(sec)).map(...).transform(switchLatest(...))
This is long and awkward compared to having the methods on the stream itself:
someStream.debounce(sec).map(...).switchLatest(...)
We should add more Rx inspired operations.