Header-only C++ hashmap and btree container library for fast lookups
Family of header-only, fast, memory-friendly C++ hashmap and btree containers
parallel-hashmap$ #include <parallel_hashmap/phmap.h>
phmap::flat_hash_map<std::string, int> map;$ #include <parallel_hashmap/btree.h>
phmap::btree_map<int, std::string> btree;$ clang++ -I/usr/local/include -std=c++17 myprogram.cpp -o myprogram