Generic Function

repeatElement(_:count:)

Creates a collection containing the specified number of the given element. 指定された数の与えられた要素を含んでいるコレクションを作成します。

Declaration 宣言

func repeatElement<T>(_ element: T, count n: Int) -> Repeated<T>

Parameters パラメータ

element

The element to repeat. 繰り返される要素。

count

The number of times to repeat element. elementを繰り返す回数。

Return Value 戻り値

A collection that contains count elements that are all element. count個の要素を含んでいるコレクション、それはすべてがelementです。

Discussion 解説

The following example creates a Repeated<Int> collection containing five zeroes: 以下の例は、5つのゼロを含んでいるあるRepeated<Int>コレクションを作成します:


let zeroes = repeatElement(0, count: 5)
for x in zeroes {
    print(x)
}
// 0
// 0
// 0
// 0
// 0

See Also 参照

Special-Use Collections 特殊用途のコレクション