-
-
Notifications
You must be signed in to change notification settings - Fork 9
Home
Welcome to the Typescript Collections Framework wiki!
The goal of this project is to provide Java developers now using AngularJS a similar set of Collections that we all had when coding in Java. The goal is to provide a better set of classes and to integrate in with AngularJS and TypeScript.
Class | Access | Search | Insert | Delete |
---|---|---|---|---|
ArrayList | O(1) | O(n) | O(1) | O(n) |
LinkedList | O(n) or O(1) | O(n) | O(n) or O(1) | O(n) or O(1) |
TreeSet/TreeMap | O(log(n)) | O(log(n)) | O(log(n)) | O(log(n)) |
HashSet/HashMap | O(1) | O(1) | O(1) | O(1) |
Minor release for LinkedList class
Patch release HashMap first few methods
Patch release new ceiling methods for TreeMap and TreeSet. Floor, higher, and lower to follow in future patches
Patch release fixing TreeMap iteration
Patch release fixing parameters for ArrayList.addAll()
Patch release making Comparator visible so that TreeMaps and TreeSets are truly accessible
ArrayList, TreeMap, and TreeSet are all available for use now.
Sample program using Angular 2 is available at https://github.com/larrydiamond/typescriptcollectionsframework-Demo-For-Angular2