Logo

Programming-Idioms

  • Ruby
  • Go

Idiom #332 List of the keys of a map

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

import "golang.org/x/exp/maps"
k := maps.Keys(m)

k will be in an indeterminate order
k := make([]K, 0, len(m))
for key := range m {
	k = append(k, key)
}

The keys have type K

k will be in an indeterminate order
k = m.keys

The elements of m.keys are in the order of their creation.
final k = m.keys;

The order of the element depends on the Map implementation

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