| 18 | |
| 19 | template <typename T, typename... TL> |
| 20 | uint32_t staticRandomHash32(T const& v, TL const&... rest) { |
| 21 | XXHash32 hash(2938728349u); |
| 22 | staticRandomHash32Iter(hash, v, rest...); |
| 23 | return hash.digest(); |
| 24 | } |
| 25 | |
| 26 | inline void staticRandomHash64Iter(XXHash64&) {} |
| 27 |
no test coverage detected