The sequence of elements to turn into an array. 配列になることになる、いくらかの要素からなるシーケンス。
init(_:)
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 8.3+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
Parameters パラメータ
s
Discussion 解説
You can use this initializer to create an array from any other type that conforms to the Sequence
protocol. For example, you might want to create an array with the integers from 1 through 7. Use this initializer around a range instead of typing all those numbers in an array literal.
あなたはこのイニシャライザを使って、Sequence
プロトコルに準拠する何か他の型から配列を作成することができます。例えば、あなたは配列を1から7までの整数で作成したいかもしれません。それらの数をすべて配列リテラルの中にタイプするの代わりに、ある範囲を取り囲むようにこのイニシャライザを使ってください。
You can also use this initializer to convert a complex sequence or collection type back to an array. For example, the keys
property of a dictionary isn’t an array with its own storage, it’s a collection that maps its elements from the dictionary only when they’re accessed, saving the time and space needed to allocate an array. If you need to pass those keys to a method that takes an array, however, use this initializer to convert that list from its type of Lazy
to a simple [String]
.
あなたはまたこのイニシャライザを使って、逆に複雑なシーケンスまたはコレクション型を配列へと変換することができます。例えば、辞書のkeys
プロパティはそれ自身のストレージを持つことになる配列ではありません、それはコレクションです、それはそれの要素らをそれらがアクセスされた時に限り辞書からマップします、そして配列を割り当てるのに必要とされる時間と空間を節約しています。しかしながら、あなたが配列を取るメソッドにそれらキーを渡す必要があるならば、このイニシャライザを使ってそのリストをそれの型のLazy
から単純な[String]
へ変換してください。