ts-collection
Version:
This is re-write of the java collection classes in typescript. There is some tweak as typescript templates are not as equivalent as Java.
14 lines (13 loc) • 537 B
TypeScript
import { AbstractSet } from "../abstractset";
import { TreeMapEntry } from "./TreeMapEntry";
import { NavigableSubMap } from "./NavigableSubMap";
export declare abstract class NavigableSubMapEntrySet<K, V> extends AbstractSet<TreeMapEntry<K, V>> {
protected nsubMap: NavigableSubMap<K, V>;
private m_Size;
private expectedModCount;
constructor(nsubMap: NavigableSubMap<K, V>);
size(): number;
isEmpty(): boolean;
contains(entry: TreeMapEntry<K, V>): boolean;
remove(entry: TreeMapEntry<K, V>): boolean;
}