System.Set Methods

From RAD Studio API Documentation
Jump to: navigation, search


InheritedProtected
ClearpublicRemoves all elements from the Set object.
ContainspublicQueries whether the Set contains a specific element.
CreatepublicSet is a C++ template for emulating the set types found in Delphi.
EmptypublicQueries whether the Set contains any members.
operator !=publicCompares two Set objects for inequality.
operator *publicReturns a new Set object that is the intersection of two Set objects.
operator *=publicAssigns the Set object the intersection of its own data and that of the Set object specified by rhs.
operator +publicReturns a new Set object that is the union of two Set objects.
operator +=publicAssigns 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 -=publicAssigns the Set object the difference between its own data and that of the Set object specified by rhs.
operator <<publicStreams out a specified Set.
operator =publicAssigns the contents of rhs to Set object.
operator ==publicCompares two Set objects for equality.
operator >>publicStreams in a specified Set.
ToIntpublicStores bits for each element of the Set and returns and integer that has the same bit set.