9#define HASHTABLE_COLLISION_CHUNK_SIZE 5
An item inside a hashtable.
struct hashitem * _collisions
List of another items with hash colliding with this.
unsigned int _collisions_size
The number of item slots allocated to _collisions memory.
bool is_set
Is true if this item has set.
int64_t value
The value of the item.
dstring_t key
The item's key.
unsigned int _collisions_length
The number of items on the _collisions list.
unsigned int _size
The number of item slots of the items allocated memory.
hashitem_t * items
List of items on the hashtable.
struct dstring dstring_t
A dynamic string (dstring) that automatically reallocate her buffer when needed.
struct hashitem hashitem_t
An item inside a hashtable.
struct hashtable hashtable_t
A hashtable.