Generic Initializer

init(_:)

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

Declaration 宣言

init<S>(_ elements: S) where S : Sequence, S.Element == Character

Parameters パラメータ

elements

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

Discussion 解説

Relationships 関係

From Protocol 由来プロトコル