Set and Map Tools (Unordered)
- Unordered Sets
- THashSet<T>, THashMultiSet<T> templates
- Structured as vector of lists
- Includes(t) search operaton
- Insert(t) and Remove(t) structural operations
- Pseudo-Random order traversal
- Modality determined by adaptor
- Unordered Maps
- THashMap<K,D>, THashMultiMap<K,D> templates
- Structured as vector of lists
- Includes(k,d) search operaton
- Insert(k,d) and Remove(k) structural operations
- Pseudo-Random order traversal
- Modality determined by adaptor
Continued in Tables Chapter
|