Hash table structure.
More...
Data Fields |
| int(* | hash )(void *) |
| | Hash function of this hash table.
|
| int(* | equals )(void *, void *) |
| | Comparison function of this hash table.
|
| int | size |
| | Number of elements of this hash table.
|
| int | length |
| | Number of buckets of this hash table.
|
| float | factor |
| | Load factor.
|
| HashNode * | elems |
| | Buckets of this hash table.
|
Detailed Description
Hash table structure.
Definition at line 82 of file hashmap.h.
Field Documentation
Buckets of this hash table.
Definition at line 95 of file hashmap.h.
Comparison function of this hash table.
Definition at line 87 of file hashmap.h.
Hash function of this hash table.
Definition at line 85 of file hashmap.h.
Number of buckets of this hash table.
Definition at line 91 of file hashmap.h.
Number of elements of this hash table.
Definition at line 89 of file hashmap.h.