42template<
class Key,
class Hash>
class HashSet;
44template<
class T,
class Key,
class Hash>
class HashTable;
45template<
class T,
class Key,
class Hash>
class HashPtrTable;
47template<
class T>
class Map;
48template<
class T>
class PtrMap;
A HashTable of pointers to objects of type <T>, with deallocation management of the pointers.
A HashTable with keys but without contents that is similar to std::unordered_set.
A HashTable similar to std::unordered_map.
A HashTable to objects of type <T> with a label key.
A HashTable of pointers to objects of type <T> with a label key.