Skip to content

Instantly share code, notes, and snippets.

@danlark1
Created April 13, 2020 10:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danlark1/545f78a0e3379867a9711f59dfa9e9e0 to your computer and use it in GitHub Desktop.
Save danlark1/545f78a0e3379867a9711f59dfa9e9e0 to your computer and use it in GitHub Desktop.
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