init(object: Any)
Creates and returns a set that contains a single given object.
ある単一の与えられたオブジェクトを含んでいる集合を作成して返します。
func adding(Any) -> Set<AnyHashable>
Returns a new set formed by adding a given object to the receiving set.
与えられたオブジェクトを受け手側の集合に加えることで形成される新しい集合を返します。
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.
与えられた配列の中のオブジェクトを受け手側の集合に加えることで形成される新しい集合を返します。