A variadic list of elements of the new array. 新しい配列の要素からなる可変長引数リスト。
Initializerinit(array
init(arrayLiteral:)
Creates an array from the given array literal.
指定された配列リテラルから配列を作成します。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 6.1+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
init(arrayLiteral elements: Element...)
Parameters パラメータ
elements
Discussion 解説
Do not call this initializer directly. It is used by the compiler when you use an array literal. Instead, create a new array by using an array literal as its value. To do this, enclose a comma-separated list of values in square brackets. このイニシャライザを直接に呼ばないでください。それは、あなたが配列リテラルを使う時にコンパイラによって使われます。代わりに、配列リテラルをその値として使うことで新しい配列を作成してください。これをするには、コンマ区切りの値のリストを角括弧で囲んでください。
Here, an array of strings is created from an array literal holding only strings. ここでは、文字列からなる配列が、文字列だけを保持している配列リテラルから作成されます。
Relationships 関係
From Protocol 由来プロトコル
See Also 参照
Infrequently Used Functionality 滅多に使われない機能性
var hashValue : Int
The hash value.
ハッシュ値。
Available when
Element
conforms to Hashable
.
Element
がHashable
に準拠する時に利用可能です。