The element to repeat. 繰り返される要素。
Initializerinit(repeating:
init(repeating:count:)
Creates a new array containing the specified number of a single, repeated value.
指定された数の、ある単一の値の繰り返しを含んでいる新しい配列を作成します。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 8.0+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
init(repeating repeatedValue: Element, count: Int
)
Parameters パラメータ
repeatedValue
count
The number of times to repeat the value passed in the
repeating
parameter.count
must be zero or greater.repeating
パラメータで渡された値を繰り返す回数。count
は、ゼロまたはより大きくなければなりません。
Discussion 解説
Here’s an example of creating an array initialized with five strings containing the letter Z. ここに、字Zを含んでいる5つの文字列で初期化される配列を作成する例があります。
Relationships 関係
From Protocol 由来プロトコル
See Also 参照
Creating an Array 配列の作成
init()
Creates a new, empty array.
新しい、空の配列を作成します。
init<S>(S)
Creates a new instance of a collection containing the elements of a sequence.
あるシーケンスの要素を含んでいるあるコレクションの新しいインスタンスを作成します。
init<S>(S)
Creates an array containing the elements of a sequence.
あるシーケンスの要素を含んでいる配列を作成します。
init(unsafeUninitializedCapacity : Int, initializingWith : (inout UnsafeMutableBufferPointer<Element>, inout Int) -> Void)
Creates an array with the specified capacity, then calls the given closure with a buffer covering the array’s uninitialized memory.
新しい配列をこの指定された収納能力で作成します、それから与えられたクロージャを、配列のもつ初期化されないメモリを含むバッファで呼び出します。