Returns whether the map is empty.
Example:
var map = new HashMap<string, string> (GLib.str_hash, GLib.str_equal);
assert (Maps.isEmptyString (map));
map.put ("key", "val");
assert (!Maps.isEmptyString (map));
| map |
the map to check. |
|
true if the map has no entries. |