libmya 0.1.0
Library to parse Mya language.
Loading...
Searching...
No Matches
hashtable.h File Reference
#include <stdbool.h>
#include <stdint.h>
#include "types/dstring.h"
Include dependency graph for hashtable.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  hashitem
 An item inside a hashtable. More...
 
struct  hashtable
 A hashtable. More...
 

Macros

#define HASHTABLE_COLLISION_CHUNK_SIZE   5
 The number of collisions items to (re)alloc when a collision occurs.
 

Typedefs

typedef uint64_t hash_t
 
typedef struct hashitem hashitem_t
 An item inside a hashtable.
 
typedef struct hashtable hashtable_t
 A hashtable.
 

Macro Definition Documentation

◆ HASHTABLE_COLLISION_CHUNK_SIZE

#define HASHTABLE_COLLISION_CHUNK_SIZE   5

The number of collisions items to (re)alloc when a collision occurs.

Definition at line 9 of file hashtable.h.

Typedef Documentation

◆ hash_t

typedef uint64_t hash_t

Definition at line 11 of file hashtable.h.

◆ hashitem_t

typedef struct hashitem hashitem_t

An item inside a hashtable.

◆ hashtable_t

typedef struct hashtable hashtable_t

A hashtable.