Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Js

Idiom #112 Iterate over map entries, ordered by keys

Print each key k with its value x from an associative array mymap, in ascending order of k.

[...mymap.entries()].sort().map(([_, x]) => console.log(x))

mymap has type Map.
We have to spread mymap.entries() because it returns an iterator instead of a list.
#include <iostream>
#include <map>
std::map< K, V > _mymap;
for (const auto& pair : _mymap) {
    std::cout << pair.first << ": " << pair.second << "\n";
}

std::map is a sorted collection that uses std::less by default.

New implementation...