minusSet:

Removes each object in another given set from the receiving set, if present. 別の与えられた集合の中の各オブジェクトを受け手側の集合から取り除きます、もし存在するならば。

Declaration 宣言

- (void)minusSet:(NSSet *)otherSet

Parameters パラメータ

otherSet

The set of objects to remove from the receiving set. 受け手側の集合から取り除くオブジェクトからなる集合。

Overview 概要

For each object in otherSet that is present in the set, this method decrements the associated count. If the count for an object is decremented to 0, the object is removed from the set. 集合の中に存在するotherSetの中の各オブジェクトに対して、このメソッドは結び付けられた計数を漸減します。あるオブジェクトに対する計数が0にまで漸減されるならば、そのオブジェクトは集合から取り除かれます。

See Also 参照

Combining and Recombining Sets 集合の結合と再結合

Related Documentation 関連文書