map_values

ABSTRACT

Given a map, return a vector that is just the values 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 values of
RETURN

the values of the map as specified by the description above

DECLARATION
func map_values(d)