Returns an ArrayList of key-value Pairs from the map.
Example:
var map = new HashMap<string, string> (GLib.str_hash, GLib.str_equal);
map.put ("a", "1");
var entries = Maps.entriesString (map);
Pair<string, string> e = (Pair<string, string>) entries.get (0);
// e.first () == "a", e.second () == "1"
| map |
the source map. |
|
an ArrayList of Pair entries. |