We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Sendable
1 parent a869192 commit f4f7c57Copy full SHA for f4f7c57
stdlib/public/core/Sendable.swift
@@ -147,11 +147,14 @@
147
///
148
/// struct MyStructure: @unchecked Sendable { ... }
149
@available(*, deprecated, message: "Use @unchecked Sendable instead")
150
+@available(swift, obsoleted: 6.0, message: "Use @unchecked Sendable instead")
151
@_marker public protocol UnsafeSendable: Sendable { }
152
153
// Historical names
154
@available(*, deprecated, renamed: "Sendable")
155
+@available(swift, obsoleted: 6.0, renamed: "Sendable")
156
public typealias ConcurrentValue = Sendable
157
158
159
160
public typealias UnsafeConcurrentValue = UnsafeSendable
0 commit comments