文書   >   Swift   >   Swift 標準ライブラリ   >   Collections   >  repeatElement(_:count:)
汎用関数
repeatElement(_:count:)
与えられた要素の指定された数を含むコレクションを作成します。
宣言
パラメータ
element | 繰り返すべき要素。 |
count | element を繰り返す回数。 |
戻り値
要素が全て element であるcount 個の要素を含むコレクション。
議論
以下の例では、5 つのゼロを含む Repeated<Int> コレクションを作成します。
let zeroes = repeatElement(0, count: 5)
for x in zeroes {
print(x)
}
// 0
// 0
// 0
// 0
// 0
以下も見よ
特別用途のコレクション
struct CollectionOfOne
単一の要素を含むコレクション。
struct EmptyCollection
要素型が Element だが、常に空のコレクション。
struct DictionaryLiteral
キー値のペアの軽量なコレクション。