#include <HashUtils.hpp>
|
template<class T1 , class T2 > |
std::size_t | operator() (const std::pair< T1, T2 > &p) const |
|
Definition at line 94 of file HashUtils.hpp.
◆ operator()()
template<class T1 , class T2 >
std::size_t Nektar::PairHash::operator() |
( |
const std::pair< T1, T2 > & |
p | ) |
const |
|
inline |
Definition at line 96 of file HashUtils.hpp.
References Nektar::hash_combine().
99 auto h1 = std::hash<T1>{}(
p.first);
100 auto h2 = std::hash<T2>{}(
p.second);
void hash_combine(std::size_t &seed)