Determines if this set is a superset of another set. Neither set is modified.
This set is a superset of
otherSet if every element in
otherSet is also in this set.
RemarksIsSupersetOf is computed in time O(M), where M is the size of the
otherSet.
Namespace: X3Platform.CollectionsAssembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntaxpublic bool IsSupersetOf(
Set<T> otherSet
)
public:
bool IsSupersetOf(
Set<T>^ otherSet
)
Parameters
- otherSet
- Type: X3Platform.CollectionsSetT
Set to compare to.
Return Value
Type:
BooleanTrue if this is a superset of
otherSet.
Exceptions
See Also