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
DispatchSpecificKey
1 parent 13151a6 commit e36dbdaCopy full SHA for e36dbda
src/swift/Queue.swift
@@ -19,6 +19,9 @@ public final class DispatchSpecificKey<T> {
19
public init() {}
20
}
21
22
+extension DispatchSpecificKey : Sendable where T : Sendable {
23
+}
24
+
25
internal class _DispatchSpecificValue<T> {
26
internal let value: T
27
internal init(value: T) { self.value = value }
0 commit comments