Returns an ArrayList of all values 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 valList = Maps.valuesString (map);
assert (valList.size () == 2);
| map |
the source map. |
|
an ArrayList of values. |