Searched refs:hashableObject (Results 1 – 1 of 1) sorted by relevance
41 inline void HashCombine(std::size_t &seed, const T &hashableObject, Rest... rest) in HashCombine() argument44 seed ^= hasher(hashableObject) + 0x9e3779b9 + (seed << 6) + (seed >> 2); in HashCombine()49 inline size_t HashMultiple(const T &hashableObject, Rest... rest) in HashMultiple() argument52 HashCombine(seed, hashableObject, rest...); in HashMultiple()