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

union(_:)

Adds each element in another given hash table to the receiving hash table, if not present. 別の与えられたハッシュテーブルの中の各要素を受け手側のハッシュテーブルに加えます、もし存在しないならば。

Declaration 宣言

func union(_ other: NSHashTable<ObjectType>)

Parameters パラメータ

other

The hash table of elements to add to the receiving hash table. 受け手側ハッシュテーブルに加えられることになる要素からなるハッシュテーブル。

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 参照

Set Functions 集合関数