My use case:
map cars; bool exists(const string& name) { // somehow I should find whether my MAP has a car // with the name provid
bool exists(const std::map& cars, const std::string& name) { return cars.end() != cars.find(name); }