I would like to see a simple example of how to override stdext::hash_compare properly, in order to define a new hash function and comparison operator for my own user-defined type. I'm using Visual C++ (2008).
|
|
|
|
|
|
|
Here you go, example from MSDN |
||
|
|
|
This is how you can do it
Then, you can just use
|
|||
|
|
|
|
I prefer using a non-member function. The method expained in the Boost documentation article Extending boost::hash for a custom data type seems to work. |
|||
|
|
