array-hash icon indicating copy to clipboard operation
array-hash copied to clipboard

C++ implementation of a fast and memory efficient hash map and hash set specialized for strings

Results 3 array-hash issues
Sort by recently updated
recently updated
newest added

Hi! Saw your awesome libs on vcpkg. Would it be possible to include this as well? :)

It looks like a significant % of time can be spent in `malloc` and `realloc`. It would be awesome to be able to pass in custom allocators to speed those...

code: ``` tsl::array_map m; m["abc"] = false; ``` compiles error: ``` array-hash/include/tsl/array_hash.h:1230:14: error: non-const lvalue reference to type 'bool' cannot bind to a temporary of type 'std::vector::reference' (aka '__bit_reference') return...