GenericSet
Object Hierarchy:
Description:
[ Compact ]
public class GenericSet<T>
The GenericSet struct is an opaque data structure to represent a Hash Table.
It should only be accessed via the following functions.
Content:
Properties:
Creation methods:
Methods:
- public void add (owned T value)
This is a convenience function for using a
GenericSet as a set.
- public bool contains (T valule)
Checks if key
is in hash_table
.
- public bool remove (T value)
Removes a key and its associated value from a
GenericSet.
- public void remove_all ()
Removes all keys and their associated values from a
GenericSet.
- public List<weak T> get_values ()
- public GenericSetIter<T> iterator ()
- public void @foreach (Func<T> func)