Type Method 型メソッド

orderedSetWithObjects:

Creates and returns a ordered set containing the objects in a given argument list. 与えられた引数リストの中のオブジェクトを含んでいる順序集合を作成して返します。

Declaration 宣言

+ (instancetype)orderedSetWithObjects:(ObjectType)firstObj, ...;

Parameters パラメータ

firstObj,

The first object to add to the new set. 新しい集合に加えることになる最初のオブジェクト。

...

A comma-separated list of objects, ending with nil, to add to the new set. 新しい集合に加えることになる、コンマで区切られた、nilで終わる、オブジェクトのリスト。

If the same object appears more than once in the list of objects, it is added only once to the returned set. The objects are added to the ordered set in the order that they are listed. 同じオブジェクトが一度以上このオブジェクトのリストに現れるならば、それはただ一度だけこの返される集合において加えられます。これらオブジェクトは、それらがリストされる順番で、順序集合に加えられます。

Return Value 戻り値

A new ordered set containing the objects in the argument list. 引数リストの中のオブジェクトを含んでいる新しい順序集合。

See Also 参照

Creating an Ordered Set 順序集合を作成する

Related Documentation 関連文書