Initializer

init(minimumCapacity:)

Creates an empty set with preallocated space for at least the specified number of elements. 空の集合を、あらかじめアロケートされたスペースで少なくとも指定された要素数に対して作成します。

Declaration 宣言

init(minimumCapacity: Int)

Parameters パラメータ

minimumCapacity

The minimum number of elements that the newly created set should be able to store without reallocating its storage buffer. 新しく作成された集合がそれのストレージバッファをアロケートし直すことなしに格納できるであろう要素の最小の数。

Discussion 解説

Use this initializer to avoid intermediate reallocations of a set’s storage buffer when you know how many elements you’ll insert into the set after creation. あなたがどのくらい多くの要素を作成後の集合に挿入するか知っているならば、このイニシャライザを使って集合の持つストレージバッファの中間的な再割り当てを回避してください。

See Also 参照

Creating a Set 集合の作成