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.
32 lines (31 loc) • 1.15 kB
TypeScript
export * from "./util/arraylist";
export * from "./util/collection";
export * from "./util/Collections";
export * from "./util/comparable";
export * from "./util/comparator";
export * from "./util/concurrentmodificationexception";
export * from "./util/deque";
export * from "./util/indexoutofboundsexception";
export * from "./util/iterator";
export * from "./util/LinkedList";
export * from "./util/list";
export * from "./util/listiterator";
export * from "./util/map";
export * from "./util/navigablemap";
export * from "./util/navigableset";
export * from "./util/nosuchelementexception";
export * from "./util/objects";
export * from "./util/TreeSet";
export * from "./util/priorityqueue";
export * from "./util/queue";
export * from "./util/RedBlackTree";
export * from "./util/set";
export * from "./util/sortedmap";
export * from "./util/sortedset";
export * from "./util/treemap";
export * from "./util/TreeSet";
export * from "./lang/exception";
export * from "./lang/illegalargumentexception";
export * from "./lang/illegalstateexception";
export * from "./lang/nullpointerexception";
export * from "./lang/unsupportedoperationexception";