Generic Initializer

init(_:)

Creates a vector from the given sequence. あるベクターをこの与えられたシーケンスから作成します。

Declaration 宣言

init<S>(_ scalars: S) where S : Sequence, Bool == S.Element

Parameters パラメータ

scalars

The elements to use in the vector. このベクターにおいて使うことになる要素。

Discussion 解説

Precondition: scalars must have the same number of elements as the vector type. 前提条件:scalarsは、ベクター型と同じ数の要素を持たなければなりません。