Advertisement
TwITe

Untitled

Aug 18th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.23 KB | None | 0 0
  1.     std::for_each(eng_dict.cbegin(), eng_dict.cend(), [](auto const& pair) {
  2.         cout << pair.first << " - ";
  3.         std::copy(pair.second.cbegin(), pair.second.cend(), std::ostream_iterator<std::string>(std::cout, ", "));
  4.         cout << "\n";
  5.     });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement