values


Description:

public List<unowned V> values ()

Returns a list of all values in the map. The order is not guaranteed.

Example:

    var map = new HashMap<string,string> (GLib.str_hash, GLib.str_equal);
map.put ("a", "1");
map.put ("b", "2");
GLib.List<unowned string> v = map.values ();
assert (v.length () == 2);

Returns:

a list of values.