Tinyhash
This is a library containing multiple C implementations of hashmap.
|
Represent an entry within a bucket. More...
#include <entry.h>
Public Attributes | |
th_key_t * | key |
th_any_t | value |
bool | is_tombstone |
bool th_oa_entry_s::is_tombstone |
Definition at line 18 of file entry.h.
Referenced by th_oa_table_delete(), th_oa_table_find(), and th_oa_table_put_with_key().
th_key_t* th_oa_entry_s::key |
Definition at line 16 of file entry.h.
Referenced by th_oa_iterator_next(), th_oa_table_copy(), th_oa_table_delete(), th_oa_table_find(), th_oa_table_free(), th_oa_table_get(), and th_oa_table_put_with_key().
th_any_t th_oa_entry_s::value |
Definition at line 17 of file entry.h.
Referenced by th_oa_iterator_next(), th_oa_table_copy(), th_oa_table_get(), and th_oa_table_put_with_key().