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 = AsyncThrowingPrefixWhileSequence<Base>.IteratorThe type of iterator that produces elements of the sequence.
typealias AsyncIterator = AsyncThrowingPrefixWhileSequence<Base>.Iterators12_Concurrency32AsyncThrowingPrefixWhileSequenceV0B8Iteratora What are these?64FRFwhere Base:AsyncSequenceimport _Concurrencystruct AsyncThrowingPrefixWhileSequence<Base> where Base : AsyncSequenceAn asynchronous sequence, containing the initial, consecutive elements of the base sequence that satisfy the given error-throwing predicate.
struct IteratorThe iterator that produces elements of the prefix-while sequence.
protocol AsyncSequence<Element, Failure>A type that provides asynchronous, sequential, iterated access to its elements.
func makeAsyncIterator() -> AsyncThrowingPrefixWhileSequence<Base>.Iterator typealias Element = Base.ElementThe type of element produced by this asynchronous sequence.
typealias Failure = any ErrorThe type of error produced by this asynchronous sequence.