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 658ecbb commit 7e7ae4aCopy full SHA for 7e7ae4a
Sources/ComposableArchitecture/Effects/ConcurrencySupport.swift
@@ -395,3 +395,9 @@ public struct UncheckedSendable<Value>: @unchecked Sendable {
395
_modify { yield &self.value[keyPath: keyPath] }
396
}
397
398
+
399
+extension UncheckedSendable: Equatable where Value: Equatable {
400
+ public static func == (lhs: UncheckedSendable, rhs: UncheckedSendable) -> Bool {
401
+ lhs.value == rhs.value
402
+ }
403
+}
0 commit comments