Hash Table
A high-performance Linear Probing map optimized for Arena usage.
Concept & Motivation
Architecture
API Reference
table.put / table.get
table.put / table.getTable cfg = table.create(&arena, 64);
int val = 100;
table.put(&cfg, string.from("Width"), &val);
int *got = table.get(&cfg, string.from("Width"));Last updated