- minusHashTable:
Removes each element in another given hash table from the receiving hash table, if present.
別の与えられたハッシュテーブルの各要素を受け手側ハッシュテーブルから取り除きます、もし存在するならば。
Availability 有効性
Technology
- (void)unionHashTable:(NSHashTable
<ObjectType > *)other;
other
The hash table of elements to add to the receiving hash table. 受け手側ハッシュテーブルに加えられることになる要素からなるハッシュテーブル。
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
をパーソナリティオプションとそれらの対応する同等性テストに関するさらなる情報のために見てください。
- minusHashTable: