| 33 | |
| 34 | template <typename T, typename... TL> |
| 35 | uint64_t staticRandomHash64(T const& v, TL const&... rest) { |
| 36 | XXHash64 hash(1997293021376312589); |
| 37 | staticRandomHash64Iter(hash, v, rest...); |
| 38 | return hash.digest(); |
| 39 | } |
| 40 | |
| 41 | template <typename T, typename... TL> |
| 42 | uint32_t staticRandomU32(T const& d, TL const&... rest) { |
no test coverage detected