Generic Initializer

init(_:)

Creates a new instance of a collection containing the elements of a sequence. あるシーケンスの要素を含んでいるあるコレクションの新しいインスタンスを作成します。

Declaration 宣言

init<S>(_ elements: S) where S : Sequence, Base.Element == S.Element
Available when Base conforms to RangeReplaceableCollection. BaseRangeReplaceableCollectionに準拠する時に利用可能です。

Parameters パラメータ

elements

The sequence of elements for the new collection. elements must be finite. 新しいコレクションのための要素からなるシーケンス。elementsは有限でなければなりません。

Discussion 解説

Relationships 関係

From Protocol 由来プロトコル