removeTimeInterval - richardszalay/raix GitHub Wiki
Removed the TimeInterval wrapper created by a call to timeInterval.
function removeTimeInterval() : IObservable.<*>The returned sequence completes when the source sequence completes.
The returned sequence raises an error if the source sequence raises an error.
IObservable.<valueClass>
Observable.range(0, 3)
.timeInterval()
.removeTimeInterval()
.subscribe(
function(x : int) : void { trace(x.toString()); }
);
// Trace output is:
// 0
// 1
// 2