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.
1 parent 696812b commit 3a3ef53Copy full SHA for 3a3ef53
stdlib/public/core/Sendable.swift
@@ -60,6 +60,13 @@
60
///
61
/// Otherwise, you need to declare conformance to `Sendable` explicitly.
62
63
+/// Structures that have nonsendable stored properties
64
+/// and enumerations that nonsendable associated values
65
+/// can be marked as `@unchecked Sendable`,
66
+/// disabling compile-time correctness checks,
67
+/// after you manually verify that
68
+/// they satisfy the `Sendable` protocol's semantic requirements.
69
+///
70
/// ### Sendable Actors
71
72
/// All actor types implicitly conform to `Sendable`
0 commit comments