Type Aliasswift 6.1.2_Concurrency
AsyncIterator
The type of iterator that produces elements of the sequence.
- iOS
- 13.0+
- macOS
- 10.15+
- tvOS
- 13.0+
- watchOS
- 6.0+
typealias AsyncIterator = AsyncFlatMapSequence<Base, SegmentOfResult>.IteratorThe type of iterator that produces elements of the sequence.
typealias AsyncIterator = AsyncFlatMapSequence<Base, SegmentOfResult>.Iteratorwhere Base:AsyncSequence, SegmentOfResult:AsyncSequenceimport _Concurrencystruct AsyncFlatMapSequence<Base, SegmentOfResult> where Base : AsyncSequence, SegmentOfResult : AsyncSequenceAn asynchronous sequence that concatenates the results of calling a given transformation with each element of this sequence.
struct IteratorThe iterator that produces elements of the flat map sequence.
protocol AsyncSequence<Element, Failure>A type that provides asynchronous, sequential, iterated access to its elements.
func makeAsyncIterator() -> AsyncFlatMapSequence<Base, SegmentOfResult>.Iterator typealias Element = SegmentOfResult.ElementThe type of element produced by this asynchronous sequence.
typealias Failure = Base.FailureThe type of error produced by this asynchronous sequence.