template <typename T, typename Key>
bool key_exists(const T& container, const Key& key)
{
return (container.find(key) != std::end(container));
}
Oczywiście, jeśli chcesz uzyskać bardziej wyszukany efekt, zawsze możesz utworzyć szablon funkcji, która również przyjęła funkcję znalezioną i funkcję nieodnalezioną, coś w stylu:
template <typename T, typename Key, typename FoundFunction, typename NotFoundFunction>
void find_and_execute(const T& container, const Key& key, FoundFunction found_function, NotFoundFunction not_found_function)
{
auto& it = container.find(key);
if (it != std::end(container))
{
found_function(key, it->second);
}
else
{
not_found_function(key);
}
}
I użyj tego w ten sposób:
std::map<int, int> some_map;
find_and_execute(some_map, 1,
[](int key, int value){ std::cout << "key " << key << " found, value: " << value << std::endl; },
[](int key){ std::cout << "key " << key << " not found" << std::endl; });
Minusem tego jest dobre imię, „find_and_execute” jest niezręczny i nie mogę wymyślić nic lepszego od głowy…
std::pair<iterator,bool> insert( const value_type& value );
Jaki bool zwraca? informuje, czy klucz jest już obecny, czy nie?