solidc
Robust collection of general-purpose cross-platform C libraries and data structures designed for rapid and safe development in C
Loading...
Searching...
No Matches
hashset.h File Reference

High-performance hash set implementation in C. More...

#include <stdbool.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
Include dependency graph for hashset.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Detailed Description

High-performance hash set implementation in C.

Why this implementation is fast?

Flat open-addressed hash table with keys stored inline.

Trade-offs

Definition in file hashset.h.