Created
February 15, 2018 13:26
-
-
Save deque-blog/5089340c153f084b91393f658a8b3f26 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for (auto const& pair : map) { | |
auto const& key = pair.first; | |
auto const& value = pair.second; | |
//... do something with the key and value | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment