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 = AsyncThrowingFilterSequence<Base>.Iterator
The type of iterator that produces elements of the sequence.
typealias AsyncIterator = AsyncThrowingFilterSequence<Base>.Iterator
s12_Concurrency27AsyncThrowingFilterSequenceV0B8Iteratora
What are these?6RHNS
where Base:AsyncSequence
import _Concurrency
struct AsyncThrowingFilterSequence<Base> where Base : AsyncSequence
An asynchronous sequence that contains, in order, the elements of the base sequence that satisfy the given error-throwing predicate.
struct Iterator
The iterator that produces elements of the filter sequence.
protocol AsyncSequence<Element, Failure>
A type that provides asynchronous, sequential, iterated access to its elements.
func makeAsyncIterator() -> AsyncThrowingFilterSequence<Base>.Iterator
typealias Element = Base.Element
The type of element produced by this asynchronous sequence.
typealias Failure = any Error
The type of element produced by this asynchronous sequence.