For a simple C++ struct that has three ints to identify a unique structure, what can be a good hash function implementation if not too much is known about the realistic values of a,b and c. I need to use the struct as Key to unordered_map?
struct Key {
int a, b, c;
}