I recently discovered that the implementation of the hash map in C++ will be called unordered_map
.
When I looked up why they weren't just using hash_map
, I discovered that apparently there are compatibility issues with the implementation of hash_map
that unordered_map
resolves (more about it here).
That wiki page doesn't give much more information so I wondering if anyone knew some of the issues with hash_map
that unordered_map
resolves.