Contains utilities that are designed to be used for or as data structures.
| Class | Description | |
|---|---|---|
| HashTable | The hash table is similar to a Dictionary in that a key object is used to map data. | |
| PriorityQueue | The PriorityQueue is a data structure utility designed to store items in a stored order based upon a defined priority value. | |
| Queue | The Queue is a datastructure that allows items to be added in a specified order then retrived by calling the next() method. |