Logo

Programming-Idioms

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

Idiom #332 List of the keys of a map

Create the list k containing all the keys of the map m

final k = m.keys;

The order of the element depends on the Map implementation

New implementation...
< >
programming-idioms.org