| 113 | } |
| 114 | |
| 115 | inline uint64 Hash64Combine(uint64 a, uint64 b) { |
| 116 | return a ^ (b + 0x9e3779b97f4a7800ULL + (a << 10) + (a >> 4)); |
| 117 | } |
| 118 | |
| 119 | // Combine two hashes in an order-independent way. This operation should be |
| 120 | // associative and compute the same hash for a collection of elements |
no outgoing calls
no test coverage detected