Type Aliasswift 6.1.2Swift
UnsafeConcurrentValue
This declaration has been renamed to Sendable.
This declaration is deprecated.
typealias UnsafeConcurrentValue = UnsafeSendableThis declaration has been renamed to Sendable.
This declaration is deprecated.
typealias UnsafeConcurrentValue = UnsafeSendableimport Swiftprotocol SendableA thread-safe type whose values can be shared across arbitrary concurrent contexts without introducing a risk of data races. Values of the type may have no shared mutable state, or they may protect that state with a lock or by forcing it to only be accessed from a specific actor.
protocol UnsafeSendable : SendableA type whose values can safely be passed across concurrency domains by copying, but which disables some safety checking at the conformance site.