mapValuesList( map )

Returns all the values in the supplied map as a list. The function always returns a single argument, which is a list.

:-) var map = newMap( "hello" ==> "there", "what's" ==> "that", "a" ==> "b" );
There are 0 results
:-) map.mapValuesList;
There is 1 result
[b, there, that]