Type Aliasswift 6.0.1_Concurrency
Element
The type of element produced by this asynchronous sequence.
- iOS
- 13.0+
- macOS
- 10.15+
- tvOS
- 13.0+
- watchOS
- 6.0+
typealias Element = Base.Element
The drop-first sequence produces whatever type of element its base iterator produces.
Other members in extension
Types
struct Iterator
The iterator that produces elements of the drop-first sequence.
Typealiases
typealias AsyncIterator
The type of iterator that produces elements of the sequence.
typealias Failure
The type of errors produced by this asynchronous sequence.
Instance members
func dropFirst(Int
) -> AsyncDropFirstSequence<Base> Omits a specified number of elements from the base asynchronous sequence, then passes through all remaining elements.
func makeAsyncIterator(
) -> AsyncDropFirstSequence<Base>.Iterator