Returns all the values in the supplied map. Each value is returned as a single result, so the function returns as many results as there are values.
:-) var map = newMap( "hello" ==> "there", "what's" ==> "that", "a" ==> "b" );
There are 0 results
:-) map.mapValues;
There are 3 results
"b"
"there"
"that"