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 f1e14f8 commit ae8c8a3Copy full SHA for ae8c8a3
stdlib/public/core/Sendable.swift
@@ -10,7 +10,10 @@
10
//
11
//===----------------------------------------------------------------------===//
12
13
-/// A type whose values can safely be passed across concurrency domains by copying.
+/// A thread-safe type whose values can be shared across arbitrary concurrent
14
+/// contexts without introducing a risk of data races. Values of the type may
15
+/// have no shared mutable state, or they may protect that state with a lock or
16
+/// by forcing it to only be accessed from a specific actor.
17
///
18
/// You can safely pass values of a sendable type
19
/// from one concurrency domain to another ---
0 commit comments