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 );
वह कौन सा बूल लौटाता है? यह बताता है, यदि कुंजी पहले से मौजूद है या नहीं?