Joedb 10.4.3
The Journal-Only Embedded Database
Loading...
Searching...
No Matches
hash_combine.h
Go to the documentation of this file.
1#ifndef joedb_hash_combine_declared
2#define joedb_hash_combine_declared
3
4#include <stddef.h>
5
6namespace joedb
7{
8 inline size_t hash_combine(size_t h1, size_t h2)
9 {
10 return h1 + 0x9e3779b9 + (h2 << 6) + (h2 >> 2);
11 }
12}
13
14#endif
15
size_t hash_combine(size_t h1, size_t h2)
Definition hash_combine.h:8