First question: is it possible to \"force\" a const_iterator using auto? For example:
const_iterator
map usa
Since C++17 you can use std::as_const like this:
#include // ... auto city_it = std::as_const(usa).find("New York");