MonobjcMonobjc Documented Class Library
IsSubsetOfHashTable Method (other)
NamespacesMonobjc.FoundationNSHashTableIsSubsetOfHashTable(NSHashTable)

Returns a Boolean value that indicates whether every element in the receiving hash table is also present in another given hash table.

Original signature is '- (BOOL)isSubsetOfHashTable:(NSHashTable *)other'

Available in Mac OS X v10.5 and later.

Declaration Syntax
C#Visual BasicVisual C++
public virtual bool IsSubsetOfHashTable(
	NSHashTable other
)
Public Overridable Function IsSubsetOfHashTable ( _
	other As NSHashTable _
) As Boolean
public:
virtual bool IsSubsetOfHashTable(
	NSHashTable^ other
)
Parameters
other (NSHashTable)
The hash table with which to compare the receiving hash table.
Return Value
YES if every element in the receiving hash table is also present in other, 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)