template <typename T, typename Key>
bool key_exists(const T& container, const Key& key)
{
return (container.find(key) != std::end(container));
}
もちろん、もっと凝ったものにしたい場合は、次のように、見つかった関数と見つからなかった関数を同時に使用する関数をいつでもテンプレート化できます。
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);
}
}
次のように使用します。
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; });
これの欠点は良い名前になり、 "find_and_execute"は扱いにくく、頭のてっぺんからこれ以上良いものを思いつくことはできません...
std::pair<iterator,bool> insert( const value_type& value );
それが返すブールは何ですか?鍵がすでに存在するかどうかはわかりますか?