#pragma once #include namespace floormat { constexpr inline size_t int_hash(size_t x) noexcept { if constexpr(sizeof(size_t) == 4) { // by Chris Wellons x ^= x >> 15; x *= 0x2c1b3c6dU; x ^= x >> 12; x *= 0x297a2d39U; x ^= x >> 15; } else if constexpr(sizeof(size_t) == 8) { // NASAM by Pelle Evensen x ^= std::rotr(x, 25) ^ std::rotr(x, 47); x *= 0x9E6C63D0676A9A99UL; x ^= x >> 23 ^ x >> 51; x *= 0x9E6D62D06F6A9A9BUL; x ^= x >> 23 ^ x >> 51; } return x; } } // namespace floormat