Thoth
A functional, expressive, asynchronous C++26 webdev library
Loading...
Searching...
No Matches
Hash.hpp
Go to the documentation of this file.
1#pragma once
2
3
4namespace Thoth::Utils {
5 constexpr void HashCombine(size_t& seed, const size_t v) {
6 seed ^= v + 0x9e3779b97f4a7c15ULL + (seed<<6) + (seed>>2);
7 }
8}
Definition Env.hpp:5
constexpr void HashCombine(size_t &seed, const size_t v)
Definition Hash.hpp:5