Maze Builder Docs 6.0.1
Loading...
Searching...
No Matches
hash.h
Go to the documentation of this file.
1#ifndef HASH_H
2#define HASH_H
3
4#include <utility>
5
6namespace mazes {
7
9
12struct pair_hash {
13
19 template <class T1, class T2>
20 std::size_t operator()(const std::pair<T1, T2>& p) const {
21 auto hash1 = std::hash<T1>{}(std::get<0>(p));
22 auto hash2 = std::hash<T1>{}(std::get<1>(p));
23 return hash1 ^ hash2;
24 }
25}; // pair_hash
26} // namespace
27
28#endif // HASH_H
Namespace for the maze builder.
Definition algo_interface.h:9
Hashing function to store a block's (x, z) position.
Definition hash.h:12
std::size_t operator()(const std::pair< T1, T2 > &p) const
Hash function for a pair.
Definition hash.h:20