- intersectHashTable:
- isSubsetOfHashTable:
- isEqualToHashTable:
Availability 有効性
Technology
- (BOOL)intersectsHashTable:(NSHashTable
<ObjectType > *)other;
other
The hash table with which to compare the receiving hash table. それと受け手側ハッシュテーブルを比較することになるハッシュテーブル。
YES
if other
intersects with the receiving hash table, 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:
- isSubsetOfHashTable:
- isEqualToHashTable: