libmya 0.1.0
Library to parse Mya language.
Loading...
Searching...
No Matches
hashtable.h
Go to the documentation of this file.
1#pragma once
2
3#include <stdbool.h>
4#include <stdint.h>
5
6#include "types/dstring.h"
7
9#define HASHTABLE_COLLISION_CHUNK_SIZE 5
10
11typedef uint64_t hash_t;
12
16typedef struct hashitem
17{
18 bool is_set;
20 int64_t value;
23 unsigned int _collisions_length;
24 unsigned int _collisions_size;
26
30typedef struct hashtable
31{
33 unsigned int _size;
An item inside a hashtable.
Definition hashtable.h:17
struct hashitem * _collisions
List of another items with hash colliding with this.
Definition hashtable.h:21
unsigned int _collisions_size
The number of item slots allocated to _collisions memory.
Definition hashtable.h:24
bool is_set
Is true if this item has set.
Definition hashtable.h:18
int64_t value
The value of the item.
Definition hashtable.h:20
dstring_t key
The item's key.
Definition hashtable.h:19
unsigned int _collisions_length
The number of items on the _collisions list.
Definition hashtable.h:23
A hashtable.
Definition hashtable.h:31
unsigned int _size
The number of item slots of the items allocated memory.
Definition hashtable.h:33
hashitem_t * items
List of items on the hashtable.
Definition hashtable.h:32
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.
uint64_t hash_t
Definition hashtable.h:11