System.Set Methods
InheritedProtected
Clear | public | Removes all elements from the Set object. |
Contains | public | Queries whether the Set contains a specific element. |
Create | public | Set is a C++ template for emulating the set types found in Delphi. |
Empty | public | Queries whether the Set contains any members. |
operator != | public | Compares two Set objects for inequality. |
operator * | public | Returns a new Set object that is the intersection of two Set objects. |
operator *= | public | Assigns the Set object the intersection of its own data and that of the Set object specified by rhs. |
operator + | public | Returns a new Set object that is the union of two Set objects. |
operator += | public | Assigns the Set object the union of its own data and that of the Set object specified by rhs. |
operator - | public |
Returns a new Set object that is the difference between two Sets. |
operator -= | public | Assigns the Set object the difference between its own data and that of the Set object specified by rhs. |
operator << | public | Streams out a specified Set. |
operator = | public | Assigns the contents of rhs to Set object. |
operator == | public | Compares two Set objects for equality. |
operator >> | public | Streams in a specified Set. |
ToInt | public | Stores bits for each element of the Set and returns and integer that has the same bit set. |