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