Initializer

init(capacity:)

Returns an initialized mutable ordered set with a given initial capacity. 与えられた初期容量を持つ初期化された可変の順序集合を返します。

Declaration 宣言

init(capacity numItems: Int)

Parameters パラメータ

numItems

The initial capacity of the new ordered set. 新しい順序集合の初期容量。

Return Value 戻り値

An initialized mutable ordered set with initial capacity to hold numItems members. 初期化された可変の順序集合、numItemsメンバを保持する初期容量を持ちます。

Discussion 議論

Mutable ordered sets allocate additional memory as needed, so numItems simply establishes the set’s initial capacity. 可変の順序集合は、追加のメモリを必要に応じてアロケートします、それでnumItemsは単にその集合の初期容量を確立します。

This method is a designated initializer of NSMutableOrderedSet. このメソッドは、NSMutableOrderedSetの指定イニシャライザです。

See Also 参照

Creating a Mutable Ordered Set 可変の順序集合を作成する

Related Documentation 関連文書