Instance Method
インスタンスメソッド
make
makeIterator()
Returns an iterator over the elements of this sequence.
このシーケンスの要素すべてを対象としたあるイテレータを返します。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 9.0+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
func makeIterator() -> Self.Iterator
Default Implementations 省略時実装
Digest Implementations 要約実装
MessageAuthenticationCode Implementations
Sequence Implementations Sequence 実装
func makeIterator () -> Self
Returns an iterator over the elements of this sequence.
このシーケンスの要素すべてを対象としたあるイテレータを返します。
Available when
Self
is
Iterator
.
Self
が
Iterator
である時に利用可能です。
See Also 参照
Creating an Iterator イテレータを作成する
associatedtype Iterator
A type that provides the sequence’s iteration interface and encapsulates its iteration state.
そのシーケンスの持つ反復インターフェイスを提供してそれの反復状態をカプセル化するある型。
associatedtype Element
A type representing the sequence’s elements.
このシーケンスの持つ要素を表している型。