| 40 | |
| 41 | template <typename T, typename... TL> |
| 42 | uint32_t staticRandomU32(T const& d, TL const&... rest) { |
| 43 | return staticRandomHash32(d, rest...); |
| 44 | } |
| 45 | |
| 46 | template <typename T, typename... TL> |
| 47 | uint64_t staticRandomU64(T const& d, TL const&... rest) { |