|
uint | size |
| Size of the hash table.
|
|
uint | num_elements |
| Number of elements in the hash table.
|
|
uint | inserts |
|
uint | collisions |
| Number of collisions in the hash table.
|
|
uint * | table |
| Pointer to the hash table.
|
|
uint(* | hash_func )(uint, uint) |
| Hash function to compute the index for a given key.
|
|
bool(* | comp )(uint, uint) |
| Comparison function for the values in the hash table.
|
|
The documentation for this struct was generated from the following file: