Generic Structure

Repeated

A collection whose elements are all identical. あるコレクション、その要素は全て同一です。

Declaration 宣言

@frozen struct Repeated<Element>

Overview 概要

You create an instance of the Repeated collection by calling the repeatElement(_:count:) function. The following example creates a collection containing the name “Humperdinck” repeated five times: あなたは、RepeatedコレクションのインスタンスをrepeatElement(_:count:)関数を呼び出すことによって作成します。以下の例は、5回繰り返した名前「Humperdinck」を含んでいるコレクションを作成します:


let repeatedName = repeatElement("Humperdinck", count: 5)
for name in repeatedName {
    print(name)
}
// "Humperdinck"
// "Humperdinck"
// "Humperdinck"
// "Humperdinck"
// "Humperdinck"

Topics 話題

Type Aliases 型エイリアス

Instance Properties 様々なインスタンスプロパティ

Instance Methods インスタンスメソッド

Subscripts 添え字

Relationships 関係

Conforms To 次に準拠

See Also 参照

Wrappers for Algorithms アルゴリズムに対するラッパー