jsts
Version:
A JavaScript library of spatial predicates and functions for processing geometry
23 lines (22 loc) • 516 B
TypeScript
/**
* @see http://download.oracle.com/javase/6/docs/api/java/util/TreeSet.html
*/
export default class TreeSet extends SortedSet {
constructor(o: any);
array: any[];
contains(o: any): boolean;
add(o: any): boolean;
addAll(c: any): boolean;
remove(): void;
iterator(): Iterator;
}
import SortedSet from './SortedSet.js';
declare class Iterator {
constructor(array: any);
array: any;
position: number;
next(): any;
hasNext(): boolean;
remove(): void;
}
export {};