Instance Methodswift 6.0.3_Concurrency
makeAsyncIterator
- iOS
- 13.0+
- macOS
- 10.15+
- tvOS
- 13.0+
- watchOS
- 6.0+
func makeAsyncIterator() -> AsyncThrowingFilterSequence<Base>.Iterator
func makeAsyncIterator() -> AsyncThrowingFilterSequence<Base>.Iterator
s12_Concurrency27AsyncThrowingFilterSequenceV04makeB8IteratorAC0G0Vyx_GyF
What are these?8RSEY
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.
typealias AsyncIterator = AsyncThrowingFilterSequence<Base>.Iterator
The type of iterator that produces elements of the sequence.
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.