init()
Creates an empty set.
空の集合を作成します。
init<S>(S)
Creates a new set from a finite sequence of items.
いくつかの要素からなる有限のシーケンスから集合を作成します。
init<Source>(Source)
Creates a new set from a finite sequence of items.
いくつかの要素からなる有限のシーケンスから集合を作成します。
Availability
Technology
init(minimumCapacity: Int
)
minimumCapacity
The minimum number of elements that the newly created set should be able to store without reallocating its storage buffer. 新しく作成された集合がそれのストレージバッファをアロケートし直すことなしに格納できるであろう要素の最小の数。
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. あなたがどのくらい多くの要素を作成後の集合に挿入するか知っているならば、このイニシャライザを使って集合の持つストレージバッファの中間的な再割り当てを回避してください。
init()
init<S>(S)
init<Source>(Source)