Tinyhash
This is a library containing multiple C implementations of hashmap.
|
Represent a separate chaining table. More...
#include <table.h>
Public Attributes | |
uint32_t | count |
uint32_t | capacity |
th_sc_entry_t ** | entries |
uint32_t th_sc_table_t::capacity |
Definition at line 18 of file table.h.
Referenced by th_sc_iterator_next(), th_sc_table_copy(), th_sc_table_delete(), th_sc_table_find(), th_sc_table_free(), th_sc_table_increase(), th_sc_table_init(), and th_sc_table_put_with_key().
uint32_t th_sc_table_t::count |
Definition at line 17 of file table.h.
Referenced by th_sc_table_delete(), th_sc_table_init(), and th_sc_table_put_with_key().
th_sc_entry_t** th_sc_table_t::entries |
Definition at line 19 of file table.h.
Referenced by th_sc_iterator_next(), th_sc_table_copy(), th_sc_table_delete(), th_sc_table_find(), th_sc_table_free(), th_sc_table_increase(), th_sc_table_init(), and th_sc_table_put_with_key().