Tinyhash
This is a library containing multiple C implementations of hashmap.
|
Centralizing every function associated with an unique implementation method. More...
#include <tinyhash.h>
Public Attributes | |
th_create_func_t | create |
th_get_func_t | get |
th_put_func_t | put |
th_delete_func_t | _delete |
th_free_func_t | _free |
th_begin_iterator_func_t | begin_iterator |
th_len_func_t | len |
Centralizing every function associated with an unique implementation method.
Definition at line 57 of file tinyhash.h.
th_delete_func_t th_funcs_t::_delete |
Definition at line 61 of file tinyhash.h.
Referenced by th_delete().
th_free_func_t th_funcs_t::_free |
Definition at line 62 of file tinyhash.h.
Referenced by th_clear(), and th_free().
th_begin_iterator_func_t th_funcs_t::begin_iterator |
Definition at line 63 of file tinyhash.h.
Referenced by th_begin_iterator(), and th_empty_iterator().
th_create_func_t th_funcs_t::create |
Definition at line 58 of file tinyhash.h.
Referenced by th_create().
th_get_func_t th_funcs_t::get |
Definition at line 59 of file tinyhash.h.
Referenced by th_get().
th_len_func_t th_funcs_t::len |
Definition at line 64 of file tinyhash.h.
Referenced by th_len().
th_put_func_t th_funcs_t::put |
Definition at line 60 of file tinyhash.h.
Referenced by th_put().