func union(NSHashTable<ObjectType>)
Adds each element in another given hash table to the receiving hash table, if not present.
別の与えられたハッシュテーブルの中の各要素を受け手側のハッシュテーブルに加えます、もし存在しないならば。
Availability 有効性
Technology
func minus(_ other: NSHashTable
<ObjectType >)
other
The hash table of elements to remove from the receiving hash table. 受け手側ハッシュテーブルから取り除くことになる要素からなるハッシュテーブル。
The equality test used for members depends on the personality option selected. For instance, choosing the object
option will use is
to determine equality. See NSPointer
for more information on personality options and their corresponding equality tests.
メンバに対して使われる同等性テストは、選択されたパーソナリティオプションに依存します。インスタンスに対して、object
オプションを選ぶことは、is
を使って同等性を判定することになります。NSPointer
をパーソナリティオプションとそれらの対応する同等性テストに関するさらなる情報のために見てください。
func union(NSHashTable<ObjectType>)