Home
last modified time | relevance | path

Searched refs:_comparer (Results 1 – 1 of 1) sorted by relevance

/third_party/typescript/src/harness/
DcollectionsImpl.ts8 private _comparer: (a: K, b: K) => number; property in collections.SortedMap
16 this._comparer = typeof comparer === "object" ? comparer.comparer : comparer;
37 return this._comparer;
45 return ts.binarySearch(this._keys, key, ts.identity, this._comparer) >= 0;
49 const index = ts.binarySearch(this._keys, key, ts.identity, this._comparer);
54 const index = ts.binarySearch(this._keys, key, ts.identity, this._comparer);
59 const index = ts.binarySearch(this._keys, key, ts.identity, this._comparer);
74 const index = ts.binarySearch(this._keys, key, ts.identity, this._comparer);