The element to repeat. 繰り返される要素。
Initializerinit(repeating:
init(repeating:count:)
Creates a new collection 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 10.0+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
Available when
Base
conforms to RangeReplaceableCollection
.
Base
がRangeReplaceableCollection
に準拠する時に利用可能です。
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 解説
The following example creates an array initialized with five strings containing the letter Z. 以下の例は、字Zを含んでいる5つの文字列で初期化される配列を作成します。
Note 注意
This documentation comment was inherited from Range
.
この文書化コメントは、Range
から引き継がれました。