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

minusHashTable:

Removes each element in another given hash table from the receiving hash table, if present. 別の与えられたハッシュテーブルの各要素を受け手側ハッシュテーブルから取り除きます、もし存在するならば。

Declaration 宣言

- (void)minusHashTable:(NSHashTable<ObjectType> *)other;

Parameters パラメータ

other

The hash table of elements to remove from the receiving hash table. 受け手側ハッシュテーブルから取り除くことになる要素からなるハッシュテーブル。

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

Set Functions 集合関数