init()
Initializes a newly allocated mutable ordered set.
新しくアロケートされた可変の順序集合を初期化します。
Availability 有効性
Technology
init(capacity numItems: Int
)
numItems
The initial capacity of the new ordered set. 新しい順序集合の初期容量。
An initialized mutable ordered set with initial capacity to hold num
members.
初期化された可変の順序集合、num
メンバを保持する初期容量を持ちます。
Mutable ordered sets allocate additional memory as needed, so num
simply establishes the set’s initial capacity.
可変の順序集合は、追加のメモリを必要に応じてアロケートします、それでnum
は単にその集合の初期容量を確立します。
This method is a designated initializer of NSMutable
.
このメソッドは、NSMutable
の指定イニシャライザです。
init()
+ orderedSetWithCapacity: