intersectSet:

Removes from the receiving set each object that isn’t a member of another given set. 受け手側の集合から別の与えられた集合のメンバでない各オブジェクトを取り除きます。

Declaration 宣言

- (void)intersectSet:(NSSet *)otherSet

Parameters パラメータ

otherSet

The set with which to perform the intersection. この集合との交叉を実行することになります。

Overview 概要

For each object in the set that is not present in otherSet, 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 関連文書