Initializersoto-core 7.4.0SotoCore
init(_:)
AnyAsyncSequence.swift:45init<SequenceOfBytes>(_ asyncSequence: SequenceOfBytes) where Element == SequenceOfBytes.Element, SequenceOfBytes : Sendable, SequenceOfBytes : AsyncSequence
init<SequenceOfBytes>(_ asyncSequence: SequenceOfBytes) where Element == SequenceOfBytes.Element, SequenceOfBytes : Sendable, SequenceOfBytes : AsyncSequence
s8SotoCore16AnyAsyncSequenceVyACyxGqd__c7ElementQyd__Rszs8SendableRd__SciRd__lufc
What are these?5PREN
import SotoCore
struct AnyAsyncSequence<Element>
associatedtype Element where Self.Element == Self.AsyncIterator.Element
The type of element produced by this asynchronous sequence.
protocol Sendable
protocol AsyncSequence<Element, Failure>
A type that provides asynchronous, sequential, iterated access to its elements.
func makeAsyncIterator() -> AsyncIterator
struct AsyncIterator
typealias AsyncIteratorNextCallback = () async throws -> Element?