+ set
Creates and returns an empty set.
空の集合を作成して返します。
+ setWithObject:
Creates and returns a set that contains a single given object.
ある単一の与えられたオブジェクトを含んでいる集合を作成して返します。
+ setWithObjects:
Creates and returns a set containing the objects in a given argument list.
与えられた引数リストの中のオブジェクトを含んでいる集合を作成して返します。
+ setWithObjects:count:
Creates and returns a set containing a specified number of objects from a given C array of objects.
指定された数のオブジェクトを、幾らかのオブジェクトからなるある与えられたC配列から含んでいるある集合を作成して返します。
+ setWithSet:
Creates and returns a set containing the objects from another set.
別の集合からのオブジェクトを含んでいるある集合を作成して返します。
- setByAddingObject:
Returns a new set formed by adding a given object to the receiving set.
与えられたオブジェクトを受け手側の集合に加えることで形成される新しい集合を返します。
- setByAddingObjectsFromSet:
Returns a new set formed by adding the objects in a given set to the receiving set.
与えられた集合の中のオブジェクトを受け手側の集合に加えることで形成される新しい集合を返します。
- setByAddingObjectsFromArray:
Returns a new set formed by adding the objects in a given array to the receiving set.
与えられた配列の中のオブジェクトを受け手側の集合に加えることで形成される新しい集合を返します。