Instance Method
インスタンスメソッド
initWithArray:
Returns a counted set object initialized with the contents of a given array.
与えられた配列の内容で初期化される計数集合オブジェクトを返します。
Declaration
宣言
- (instancetype)initWithArray:(NSArray
<ObjectType> *)array;
Parameters
パラメータ
anArray
An array of objects to add to the new set.
新しい集合に加える、いくつかのオブジェクトからなる配列。
Return Value
戻り値
An initialized counted set object with the contents of anArray
. The returned object might be different than the original receiver.
anArray
の内容を持つ、初期化された計数集合オブジェクト。返されるオブジェクトは、オリジナルのレシーバとは異なるかもしれません。
See Also
参照
Initializing a Counted Set
計数集合を初期化する
- initWithSet:
Returns a counted set object initialized with the contents of a given set.
与えられた集合の内容で初期化される計数集合オブジェクトを返します。
- initWithCapacity:
Returns a counted set object initialized with enough memory to hold a given number of objects.
与えられた数のオブジェクトを保持するのに十分なメモリで初期化される計数集合オブジェクトを返します。
Related Documentation
関連文書
+ setWithArray:
Creates and returns a set containing a uniqued collection of the objects contained in a given array.
与えられた配列の中に含まれるオブジェクトの特有なもののコレクションを含んでいる集合を作成して返します。
- initWithArray:
Initializes a newly allocated set with the objects that are contained in a given array.
与えられた配列の中に含まれるオブジェクトを持つ、新しくアロケートされた集合を初期化します。