MonobjcMonobjc Documented Class Library
IsSubsetOfSet Method (otherSet)
NamespacesMonobjc.FoundationNSSetIsSubsetOfSet(NSSet)

Returns a Boolean value that indicates whether every object in the receiving set is also present in another given set.

Original signature is '- (BOOL)isSubsetOfSet:(NSSet *)otherSet'

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
public virtual bool IsSubsetOfSet(
	NSSet otherSet
)
Public Overridable Function IsSubsetOfSet ( _
	otherSet As NSSet _
) As Boolean
public:
virtual bool IsSubsetOfSet(
	NSSet^ otherSet
)
Parameters
otherSet (NSSet)
The set with which to compare the receiving set.
Return Value
YES if every object in the receiving set is also present in otherSet, otherwise NO.
Version Information
  • Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)

Assembly: Monobjc.Foundation (Module: Monobjc.Foundation)