I don't know why, but this function implementation really makes me happy.
It took me way too long to get it right, but it's just perfect now :D
It took me way too long to get it right, but it's just perfect now :D
Comments
It might be good to give more descriptive variable names for the uninitiated. But I can look up the algorithm.
Strange coincidence.
optimized binary search via eytzinger sorted pointers is trivial to generate and O(log2 n) read which isn't too bad.
Basically the idea was to find an xxhash32 seed where all n keys have hashes (mod n) with zero collisions.
Then I store just seed and a list of pointers.
I'm tempted to include both the perfect hash and the eytzinger indexes, but O(log2 n) of numbers under 16 is small.
- positive integer
- negative integer
- decimal
- reference (null, false, true, ...user-defined)
- pointer (to duplicate values in doc)
- string (utf8)
- bytes
- list
- map
- array (list with simple index)
- ??? (map with eytzinger index)
- set
- chain
Any suggestions?