Initializer

init(objects:count:)

Creates and returns a set containing a specified number of objects from a given C array of objects. 指定された数のオブジェクトを、幾らかのオブジェクトからなるある与えられたC配列から含んでいるある集合を作成して返します。

Declaration 宣言

convenience init(objects: UnsafePointer<AnyObject>, 
           count cnt: Int)

Parameters パラメータ

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から新しい集合に加えられることになるオブジェクトの数。

Return Value 戻り値

A new set containing cnt objects from the list of objects specified by objects. cnt個のオブジェクトをobjectsで指定されるオブジェクトのリストから含んでいる新しい集合。

See Also 参照

Creating a Set 集合の作成

Related Documentation 関連文書