Open CyonAlexRDX opened 1 year ago
Swifts AsyncStream for example is sendable:
AsyncStream
@available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *) extension AsyncStream : @unchecked Sendable where Element : Sendable { }
Thus it feels like AnyAsyncSequence safely can be marked Sendable as well?
AnyAsyncSequence
Swifts
AsyncStream
for example is sendable:Thus it feels like
AnyAsyncSequence
safely can be marked Sendable as well?