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.
10 lines (9 loc) • 431 B
TypeScript
import { SubMapIterator } from "./SubMapIterator";
import { TreeMap } from "../treemap";
import { Iterator } from "../iterator";
import { TreeMapEntry } from "../treemaputil/TreeMapEntry";
export declare class DescendingSubMapKeyIterator<K, V> extends SubMapIterator<K, V> implements Iterator<K> {
constructor(map: TreeMap<K, V>, last: TreeMapEntry<K, V>, fence: TreeMapEntry<K, V>);
next(): K | any;
remove(): void;
}