Instance Method
インスタンスメソッド
unionSet:
Adds each object in another given set to the receiving set, if not present.
別の与えられた集合の中の各オブジェクトを受け手側の集合に加えます、もし存在しないならば。
Declaration
宣言
- (void)unionSet:(NSSet
<ObjectType> *)otherSet;
Parameters
パラメータ
otherSet
The set of objects to add to the receiving set.
受け手側の集合に加えることになるオブジェクトからなる集合。
See Also
参照
Combining and recombining sets
集合の結合と再結合
- minusSet:
Removes each object in another given set from the receiving set, if present.
別の与えられた集合の中の各オブジェクトを受け手側の集合から取り除きます、もし存在するならば。
- intersectSet:
Removes from the receiving set each object that isn’t a member of another given set.
受け手側の集合から別の与えられた集合のメンバでない各オブジェクトを取り除きます。
- setSet:
Empties the receiving set, then adds each object contained in another given set.
受け手側の集合を空にします、それから別の与えられた集合に含まれる各オブジェクトを加えます。
Related Documentation
関連文書
- addObject:
Adds a given object to the set, if it is not already a member.
与えられたオブジェクトを集合に加えます、もしそれがまだメンバでないならば。
- addObjectsFromArray:
Adds to the set each object contained in a given array that is not already a member.
この集合に、ある与えられた配列の中に含まれる各オブジェクトでまだメンバでないものを加えます。