Choosing between std::map and std::unordered_map

Viewed 96164

Now that std has a real hash map in unordered_map, why (or when) would I still want to use the good old map over unordered_map on systems where it actually exists? Are there any obvious situations that I cannot immediately see?

5 Answers
Related