var wrappedValue: Wrapped
s25PackageConcurrencyHelpers14UnsafeTransferV12wrappedValuexvp
9AE7E
import PackageConcurrencyHelpers
struct UnsafeTransfer<Wrapped>
UnsafeTransfer can be used to make non-Sendable values Sendable. As the name implies, the usage of this is unsafe because it disables the sendable checking of the compiler. It can be used similar to @unsafe Sendable but for values instead of types.
UnsafeTransfer
Sendable
@unsafe Sendable
init(_ wrappedValue: Wrapped)