- intersectHashTable:
- intersectsHashTable:
- isEqualToHashTable:
Availability 有効性
Technology
- (BOOL)isSubsetOfHashTable:(NSHashTable
<ObjectType > *)other;
other
The hash table with which to compare the receiving hash table. それと受け手側ハッシュテーブルを比較することになるハッシュテーブル。
YES
if every element in the receiving hash table is also present in other
, otherwise NO
.
YES
、もし受け手側ハッシュテーブルの中のすべての要素がまたother
の中に存在するならば、そうでなければNO
。
The equality test used for members depends on the personality option selected. For instance, choosing the NSPointer
option will use is
to determine equality. See NSPointer
for more information on personality options and their corresponding equality tests.
メンバに対して使われる同等性テストは、選択されたパーソナリティオプションに依存します。インスタンスに対して、NSPointer
オプションを選ぶことは、is
を使って同等性を判定することになります。NSPointer
をパーソナリティオプションとそれらの対応する同等性テストに関するさらなる情報のために見てください。
- intersectHashTable:
- intersectsHashTable:
- isEqualToHashTable: