File: /var/www/tana/frontend/node_modules/rx/ts/core/linq/observable/jortsortuntil.ts
/// <reference path="../../observable.ts" />
module Rx {
export interface Observable<T> {
/**
* jortSort checks if your inputs are sorted until another Observable sequence fires.
* See http://jort.technology/ for full details.
* @returns {Observable} An observable which has a single value of true if sorted, else false.
*/
jortSortUntil<TOther>(other: TOther): Observable<boolean>;
}
}
(function () {
var o : Rx.Observable<number>;
var b : Rx.Observable<boolean> = o.jortSortUntil(o);
});