I have a map called:
std::unordered_map < std::string, struct > g_users
but I would like to enter a second key, so that I could work with:
std::unordered_map < std::pair < std::string, int> struct> g_users
Is there any way of using the find function just to look for one of the keys? If not, is there any way to filter my map according to two keys?