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));
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