eduEngine 1.0
Course framework for DA376B
Loading...
Searching...
No Matches
hash_combine.h
1// Created by Carl Johan Gribel.
2// Licensed under the MIT License. See LICENSE file for details.
3
4#ifndef hash_combine_h
5#define hash_combine_h
6
7#include <functional>
8
9namespace detail {
10
11template<typename T>
12void hash_combine(size_t& seed, const T& val)
13{
14 seed ^= std::hash<T>()(val) + 0x9e3779b9 + (seed<<6) + (seed>>2);
15}
16
17}
18
21template<typename... Types>
22size_t hash_combine(const Types&... args)
23{
24 size_t seed = 0;
25 (detail::hash_combine(seed,args) , ... );
26 return seed;
27}
28
29#endif /* hash_combine_h */