#include <hashtable.h>
Public Methods | |
virtual void | insertItem (HashTableItem< Key_, T_ > *item) |
Insert item to the bucket. More... | |
virtual T_ * | find (Key_ key) |
Find item by a key. More... | |
virtual bool | removeItem (Key_ key) |
Public Attributes | |
HashTableComparator | comparator_ |
Comparator of some basic data types. |
Key_ | Class representing the type of a key. |
T_ | Class representing the type of data. |
HashTableBucketContainer_ | Template class representing the container type that forms a base for the HashTableBucket. |
Definition at line 164 of file hashtable.h.
|
Find item by a key.
Definition at line 190 of file hashtable.h. |
|
Insert item to the bucket.
Definition at line 178 of file hashtable.h. |
|
Remove the item with given key. Data of the item is not deleted unless setAutoDelete was changed.
Definition at line 214 of file hashtable.h. |