28template <
typename T,
typename... Rest>
33 seed ^= hasher(v) + 0x9e3779b9 + (seed << 6) + (seed >> 2);
38template <
typename T,
typename... Rest>
40hash_combine(std::size_t & seed,
const std::vector<T> & v, Rest &&... rest)
48template <
typename T,
typename... Rest>
50hash_combine(std::size_t & seed,
const std::set<T> & v, Rest &&... rest)
61template <
typename S,
typename T>
62struct hash<
std::pair<S, T>>
64 inline size_t operator()(
const std::pair<S, T> & val)
const
MOOSE now contains C++17 code, so give a reasonable error message stating what the user can do to add...
void hash_combine(std::size_t &)
Used for hash function specialization for Attribute objects.
size_t operator()(const std::pair< S, T > &val) const