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 = AsyncFilterSequence<Base>.Iterator
The type of iterator that produces elements of the sequence.
typealias AsyncIterator = AsyncFilterSequence<Base>.Iterator
where Base:AsyncSequence
import _Concurrency
struct AsyncFilterSequence<Base> where Base : AsyncSequence
An asynchronous sequence that contains, in order, the elements of the base sequence that satisfy a given 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() -> AsyncFilterSequence<Base>.Iterator
typealias Element = Base.Element
The type of element produced by this asynchronous sequence.
typealias Failure = Base.Failure
The type of the error that can be produced by the sequence.