Generic Initializer
init(_:)
Creates a new set from a finite sequence of items.
いくつかの要素からなる有限のシーケンスから集合を作成します。
Technology
- Swift Standard Library
Swift標準ライブラリ
Parameters
パラメータ
sequence
The elements to use as members of the new set.
新しい集合の要素として使うための要素。
Discussion
解説
Use this initializer to create a new set from an existing sequence, like an array or a range:
このイニシャライザを使って、新しい集合を既存のシーケンス、配列またはある範囲などから作成してください:
See Also
参照
Creating a Set
集合の作成
init()
Creates an empty set.
空の集合を作成します。
init(minimumCapacity: Int)
Creates an empty set with preallocated space for at least the specified number of elements.
空の集合を、あらかじめアロケートされたスペースで少なくとも指定された要素数に対して作成します。
init<Source>(Source)
Creates a new set from a finite sequence of items.
いくつかの要素からなる有限のシーケンスから集合を作成します。