Inheritance diagram for OFUnorderedSet< T >:
Public Member Functions | |
OFUnorderedSet () | |
Default constructor. | |
OFUnorderedSet (const OFUnorderedSet< T > &src) | |
Copy constructor. | |
virtual | ~OFUnorderedSet () |
Destructor. | |
const OFUnorderedSet< T > & | operator= (const OFUnorderedSet< T > &src) |
operator=. | |
virtual OFBool | operator== (const OFUnorderedSet< T > &other) const |
Determines if two sets are identical. | |
virtual OFBool | operator!= (const OFUnorderedSet< T > &other) const |
Determines if two sets are not identical. | |
virtual void | Insert (const T &item) |
Inserts a new item into the set. | |
virtual void | Insert (const OFUnorderedSet< T > &other) |
Inserts all items of another set into this set. | |
virtual void | Remove (const T &item) |
Removes one item from the set. | |
virtual void | RemoveByIndex (unsigned int index) |
Removes one item from the set. | |
virtual T * | Find (const T &item) const |
Tries to find a given object in the set. | |
virtual OFBool | Contains (const T &item) const |
Determines if a certain item is contained in the set. | |
virtual OFBool | IsSupersetOf (const OFUnorderedSet< T > &other) const |
Determines if this is an actual superset of other, i.e. | |
virtual OFBool | IsSubsetOf (const OFUnorderedSet< T > &other) const |
Determines if this is an actual subset of other, i.e. | |
OFUnorderedSet< T > | Union (const OFUnorderedSet< T > &other) const |
Determines the union of the two sets this and other, i.e. | |
OFUnorderedSet< T > | Intersection (const OFUnorderedSet< T > &other) const |
Determines the intersection of the two sets this and other, i.e. | |
OFUnorderedSet< T > | Difference (const OFUnorderedSet< T > &other) const |
Determines the difference this - other, i.e. | |
OFUnorderedSet< T > | SymmetricDifference (const OFUnorderedSet< T > &other) const |
Determines the symmetric difference of this and other, i.e. |
Note the following properties of this class:
Definition at line 57 of file ofuoset.h.
|
Copy constructor.
|
|
Determines if a certain item is contained in the set.
Implements OFSet< T >. Definition at line 273 of file ofuoset.h. Referenced by OFUnorderedSet< T >::Difference(), OFUnorderedSet< T >::Intersection(), OFUnorderedSet< T >::IsSupersetOf(), and OFUnorderedSet< T >::operator==(). |
|
Determines the difference this - other, i.e. the set containing all the items found in this but not in other, and returns the resulting new set.
Definition at line 396 of file ofuoset.h. References OFUnorderedSet< T >::Contains(), and OFUnorderedSet< T >::Insert(). Referenced by OFUnorderedSet< T >::SymmetricDifference(). |
|
Tries to find a given object in the set. In case the specified object could be found, a pointer to the corresponding element within the set is returned; in case the specified object could not be found, NULL will be returned.
Implements OFSet< T >. |
|
Inserts all items of another set into this set.
Definition at line 171 of file ofuoset.h. References OFSet< T >::items, and OFSet< T >::num. |
|
Inserts a new item into the set.
Implements OFSet< T >. Definition at line 151 of file ofuoset.h. Referenced by OFUnorderedSet< T >::Difference(), OFUnorderedSet< T >::Intersection(), and OFUnorderedSet< T >::Union(). |
|
Determines the intersection of the two sets this and other, i.e. the set containing all items which can be found in both this and other, and returns the resulting new set.
Definition at line 362 of file ofuoset.h. References OFUnorderedSet< T >::Contains(), OFUnorderedSet< T >::Insert(), and OFUnorderedSet< T >::Remove(). |
|
Determines if this is an actual subset of other, i.e. if this is completely contained in other and other furthermore has additional elements.
|
|
Determines if this is an actual superset of other, i.e. if this completely contains other and furthermore has additional elements.
Definition at line 293 of file ofuoset.h. References OFUnorderedSet< T >::Contains(), and OFUnorderedSet< T >::Remove(). |
|
Determines if two sets are not identical.
|
|
operator=.
Definition at line 90 of file ofuoset.h. References OFSet< T >::operator=(). |
|
Determines if two sets are identical.
Definition at line 105 of file ofuoset.h. References OFUnorderedSet< T >::Contains(), OFSet< T >::items, OFSet< T >::num, and OFUnorderedSet< T >::Remove(). |
|
Removes one item from the set.
Implements OFSet< T >. Definition at line 182 of file ofuoset.h. Referenced by OFUnorderedSet< T >::Intersection(), OFUnorderedSet< T >::IsSupersetOf(), and OFUnorderedSet< T >::operator==(). |
|
Removes one item from the set.
Implements OFSet< T >. |
|
Determines the symmetric difference of this and other, i.e. the set containing all the items which can be found either in this or in other but not in the intersection of this and other, and returns the resulting new set.
Definition at line 433 of file ofuoset.h. References OFUnorderedSet< T >::Difference(), and OFUnorderedSet< T >::Union(). |
|
Determines the union of the two sets this and other, i.e. the set containing all items which can be found either in this or in other, and returns the resulting new set.
Definition at line 343 of file ofuoset.h. References OFUnorderedSet< T >::Insert(). Referenced by OFUnorderedSet< T >::SymmetricDifference(). |