Is there a way to get a list of all the keys in a Go language map? The number of elements is given by len(), but if I have a map like:
len()
m := map
This is also an option
for key, element := range myMap{ fmt.Println("Key:", key, "Element:", element) }