std::unordered_map<std::string, bool> str_bool_map = {
{"a", true},
{"b", false},
{"c", true}
};
can we use std::any_of
on this map to see any of its values is false
? Or any of its key is let's say "d"
?
Similarly can we use std::all_of
or std::none_of
on this map?