init(object: Any)
Creates and returns a set that contains a single given object.
ある単一の与えられたオブジェクトを含んでいる集合を作成して返します。
init(objects: UnsafePointer<AnyObject>, count: Int)
Creates and returns a set containing a specified number of objects from a given C array of objects.
指定された数のオブジェクトを、幾らかのオブジェクトからなるある与えられたC配列から含んでいるある集合を作成して返します。
func addingObjects (from: Set<AnyHashable>) -> Set<AnyHashable>
Returns a new set formed by adding the objects in a given set to the receiving set.
与えられた集合の中のオブジェクトを受け手側の集合に加えることで形成される新しい集合を返します。
func addingObjects (from: [Any]) -> Set<AnyHashable>
Returns a new set formed by adding the objects in a given array to the receiving set.
与えられた配列の中のオブジェクトを受け手側の集合に加えることで形成される新しい集合を返します。