Generic Initializer
init(_:)
Creates a sequence whose
makeIterator()
method forwards to makeUnderlyingIterator
.
それのmakeIterator()
メソッドをmakeUnderlyingIterator
へと転送するあるシーケンスを作成します。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 8.3+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
init<I>(_ makeUnderlyingIterator: @escaping () -> I) where Element == I.Element
, I : IteratorProtocol