mapKeysList( map )
Returns all the keys 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.mapKeysList;
There is 1 result
[a, hello, what's]