Type Method 型メソッド

setWithArray:

Creates and returns a set containing a uniqued collection of the objects contained in a given array. 与えられた配列の中に含まれるオブジェクトの特有なもののコレクションを含んでいる集合を作成して返します。

Declaration 宣言

+ (instancetype)setWithArray:(NSArray<ObjectType> *)array;

Parameters パラメータ

array

An array containing the objects to add to the new set. If the same object appears more than once in array, it is added only once to the returned set. Each object receives a retain message as it is added to the set. 新しい集合に加えることになるオブジェクトを含んでいる配列。同じオブジェクトが一度以上arrayに現れるならば、それはただ一度だけこの返される集合において加えられます。各オブジェクトは、それが集合に加えられるときretainメッセージを受け取ります。

Return Value 戻り値

A new set containing a uniqued collection of the objects contained in array. arrayの中に含まれるオブジェクトからなる特有なもののコレクションを含んでいる新しい集合。

See Also 参照

Creating a Set 集合の作成