-
Notifications
You must be signed in to change notification settings - Fork 8
removeTimeInterval
richardszalay edited this page May 20, 2011
·
7 revisions
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