Type Aliasswift 6.0.3_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 = AsyncThrowingMapSequence<Base, Transformed>.Iterator
The type of iterator that produces elements of the sequence.
typealias AsyncIterator = AsyncThrowingMapSequence<Base, Transformed>.Iterator
where Base:AsyncSequence
import _Concurrency
struct AsyncThrowingMapSequence<Base, Transformed> where Base : AsyncSequence
An asynchronous sequence that maps the given error-throwing closure over the asynchronous sequence’s elements.
struct Iterator
The iterator that produces elements of the map sequence.
protocol AsyncSequence<Element, Failure>
A type that provides asynchronous, sequential, iterated access to its elements.
func makeAsyncIterator() -> AsyncThrowingMapSequence<Base, Transformed>.Iterator
typealias Element = Transformed
The type of element produced by this asynchronous sequence.
typealias Failure = any Error
The type of error produced by this asynchronous sequence.