Skip to content

Instantly share code, notes, and snippets.

@danlark1
Created April 13, 2020 10:55
Embed
What would you like to do?
iteration
std::unordered_map<std::string, int> m;
// ...
for (const auto& [key, value] : m) {
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment