Removes an element from the set.
Example:
var set = new HashSet<string> (GLib.str_hash, GLib.str_equal);
set.add ("apple");
assert (set.remove ("apple"));
assert (!set.remove ("apple"));
| element |
the element to remove. |
|
true if the element was removed, false if not found. |