I've read that unordered_map places elements with the same hash in buckets and that's how it handles hash collisions. However, when I checked the insert function, it says:
Each element is inserted only if its key is not equivalent to the key of any other element already in the container
Does that mean that I cannot insert an element with the same hash?.. I'm supposed to be able to insert an element with a new hash since the unordered_map structure can handle collisions, right?.. I think I may be missing something.