init(array: [Any])
Initializes a newly allocated set with the objects that are contained in a given array.
与えられた配列の中に含まれるオブジェクトを持つ、新しくアロケートされた集合を初期化します。
init(array: [Any], copyItems : Bool)
Initializes a newly allocated set with the objects that are contained in a given array, optionally copying the items.
新しくアロケートされた集合を初期化します、与えられた配列に含まれるオブジェクトを使います、任意に項目をコピーします。
init(array: [Any], range: NSRange, copyItems : Bool)
Initializes a newly allocated set with the objects that are contained in the specified range of an array, optionally copying the items.
新しくアロケートされた集合を初期化します、ある配列の指定された範囲に含まれるオブジェクトを使います、任意に項目をコピーします。
init(object: Any)
Initializes a new ordered set with the object.
新しい順序集合をこのオブジェクトで初期化します。
init(objects: UnsafePointer<AnyObject>?, count: Int)
Initializes a newly allocated set with a specified number of objects from a given C array of objects.
新しくアロケートされた集合を初期化します、与えられたC配列のオブジェクトからの指定された数のオブジェクトを使います。
init(orderedSet : NSOrderedSet)
Initializes a new ordered set with the contents of a set.
新しい順序集合をある集合の内容で初期化します。
init(orderedSet : NSOrderedSet, copyItems : Bool)
Initializes a new ordered set with the contents of a set, optionally copying the items.
新しい順序集合をある集合の内容で初期化します、任意に項目をコピーします。
init(orderedSet : NSOrderedSet, range: NSRange, copyItems : Bool)
Initializes a new ordered set with the contents of an ordered set, optionally copying the items.
新しい順序集合をある順序集合の内容で初期化します、任意に項目をコピーします。
init(set: Set<AnyHashable>)
Initializes a new ordered set with the contents of a set.
新しい順序集合をある集合の内容で初期化します。
init(set: Set<AnyHashable>, copyItems : Bool)
Initializes a new ordered set with the contents of a set, optionally copying the objects in the set.
新しい順序集合をある集合の内容で初期化します、任意にその集合の中のオブジェクトをコピーします。