Generic Function
repeatElement(_:count:)
Creates a collection containing the specified number of the given element.
指定された数の与えられた要素を含んでいるコレクションを作成します。
Technology
- Swift Standard Library
Swift標準ライブラリ
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>
コレクションを作成します:
See Also
参照
Special-Use Collections
特殊用途のコレクション
struct EmptyCollection
A collection whose element type is Element
but that is always empty.
それの要素型はElement
である、しかし常に空であるコレクション。