Returns an ArrayList of all keys in the map.
Example:
var map = new HashMap<string, string> (GLib.str_hash, GLib.str_equal);
map.put ("a", "1");
map.put ("b", "2");
var keyList = Maps.keysString (map);
assert (keyList.size () == 2);
| map |
the source map. |
|
an ArrayList of keys. |