map_keys

ABSTRACT

Given a map, return a vector that is just the keys of the map. The order of the elements in the returned vector is given by the order the elements were inserted into the map

PARAMETERS
dthe map that we want to find the keys of
RETURN

the keys of the map as specified by the description above

DECLARATION
func map_keys(d)