![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This concrete class implements the core functionality for a Dictionary and/or Hash Table. More...
This concrete class implements the core functionality for a Dictionary and/or Hash Table.
The class requires the application to supply the memory and hash function (a default function is available) for the hash table.
#include <DHashTable_.h>
Public Member Functions | |
DHashTable_ (DList< DictItem > buckets[], unsigned int numBuckets, HashFunc func=Cpl::Container::hashFuncDefault) | |
Constructor. | |
void | insert (DictItem &node) |
See Cpl::Container::HashTable_. | |
DictItem * | removeItem (DictItem &nodeToDelete) |
See Cpl::Container::HashTable_. | |
DictItem * | find (const Key &keyToFind) const |
See Cpl::Container::HashTable_. | |
DictItem * | first () const |
See Cpl::Container::HashTable_. | |
DictItem * | next (DictItem ¤t) const |
See Cpl::Container::HashTable_. | |
void | tableStats (HashTableStats &tableInfo) const |
See Cpl::Container::HashTable_. | |
|
inline |
Constructor.
|
inline |
|
inline |