data_structures
|
A symbol table of generic key-value pairs, implemented as a dynamically resizing linear-probing hashmap. More...
#include <hashmap.h>
Data Fields | |
void ** | keys |
The keys. More... | |
void ** | vals |
The values. More... | |
size_t | size |
The number of elements in the hashmap. More... | |
size_t | capacity |
The current capacity of the hashmap. More... | |
const t_type * | key_type |
The type of keys in the hashmap. More... | |
const t_type * | val_type |
The type of values in the hashmap. More... | |
A symbol table of generic key-value pairs, implemented as a dynamically resizing linear-probing hashmap.