init(array: [Any])
init(set: Set<AnyHashable>)
init(set: Set<AnyHashable>, copyItems : Bool)
init()
Availability 有効性
Technology
init(objects: UnsafePointer
<AnyObject>?,
count cnt: Int
)
objects
A C array of objects to add to the new set. If the same object appears more than once in objects
, it is added only once to the returned set. Each object receives a retain
message as it is added to the set.
新しい集合に加えることになるオブジェクトからなるC配列。同じオブジェクトが一度以上objects
に現れるならば、それはただ一度だけこの返される集合において加えられます。各オブジェクトは、それが集合に加えられるときretain
メッセージを受け取ります。
cnt
The number of objects from objects
to add to the new set.
objects
から新しい集合に加えられることになるオブジェクトの数。
An initialized set containing cnt
objects from the list of objects specified by objects
. The returned set might be different than the original receiver.
cnt
個のオブジェクトをobjects
で指定されるオブジェクトのリストから含んでいる初期化された集合。返される集合は、オリジナルのレシーバとは異なるかもしれません。
This method is a designated initializer for NSSet
.
このメソッドは、NSSet
の指定イニシャライザです。
init(array: [Any])
init(set: Set<AnyHashable>)
init(set: Set<AnyHashable>, copyItems : Bool)
init()
- initWithObjects:
init(objects: UnsafePointer<AnyObject>, count: Int)