pgs.js
Version:
PGS (Presentation Graphic Stream) Subtitle For HTML5 Media Playback
15 lines • 439 B
TypeScript
export default class AVLTree<K, V> {
private root;
private compare;
constructor(compare: (fst: K, snd: K) => -1 | 0 | 1);
clear(): void;
has(key: K): boolean;
get(key: K): V | undefined;
floor(key: K): V | undefined;
ceil(key: K): V | undefined;
range(from: K, to: K): Iterable<V>;
insert(key: K, value: V): void;
delete(key: K): void;
toString(): string;
}
//# sourceMappingURL=avl.d.ts.map