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

isSubset(of:)

Returns a Boolean value that indicates whether every element in the receiving hash table is also present in another given hash table. 受け手側ハッシュテーブルのすべての要素がまた、別の与えられたハッシュテーブルに存在するかどうかを指し示すブール値を返します。

Declaration 宣言

func isSubset(of other: NSHashTable<ObjectType>) -> Bool

Parameters パラメータ

other

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

Return Value 戻り値

true if every element in the receiving hash table is also present in other, otherwise false. true、もし受け手側ハッシュテーブルの中のすべての要素がまたotherの中に存在するならば、そうでなければfalse

Discussion 議論

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

See Also 参照

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