Logo

Programming-Idioms

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

Idiom #332 List of the keys of a map

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

import static java.util.List.copyOf;
import java.util.List;
List<K> k = copyOf(m.keySet());

Immutable
import java.util.ArrayList;
import java.util.List;
List<K> k = new ArrayList<>(m.keySet());
final k = m.keys;

The order of the element depends on the Map implementation

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