Unordered associative containers (C++): Difference between revisions

Content deleted Content added
Line 209:
 
struct hash_X{
size_t operator()(const X &x) const{
return hash<int>()(x.i) ^ hash<int>()(x.j) ^ hash<int>()(x.k);
}