Instance Method インスタンスメソッド

intersectsHashTable:

Returns a Boolean value that indicates whether a given hash table intersects with the receiving hash table. 与えられたハッシュテーブルが受け手側ハッシュテーブルと共通部分があるかどうかを指し示すブール値を返します。

Declaration 宣言

- (BOOL)intersectsHashTable:(NSHashTable<ObjectType> *)other;

Parameters パラメータ

other

The hash table with which to compare the receiving hash table. それと受け手側ハッシュテーブルを比較することになるハッシュテーブル。

Return Value 戻り値

YES if other intersects with the receiving hash table, otherwise NO. YES、もしotherが受け手側ハッシュテーブルと交わりがあるならば、そうでなければNO

Discussion 議論

The equality test used for members depends on the personality option selected. For instance, choosing the NSPointerFunctionsObjectPersonality option will use isEqual: to determine equality. See NSPointerFunctionsOptions for more information on personality options and their corresponding equality tests. メンバに対して使われる同等性テストは、選択されたパーソナリティオプションに依存します。インスタンスに対して、NSPointerFunctionsObjectPersonalityオプションを選ぶことは、isEqual:を使って同等性を判定することになります。NSPointerFunctionsOptionsをパーソナリティオプションとそれらの対応する同等性テストに関するさらなる情報のために見てください。

See Also 参照

Comparing Hash Tables ハッシュテーブルを比較する