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 aa7d88c commit 4baef05Copy full SHA for 4baef05
Sources/ComposableArchitecture/Effects/ConcurrencySupport.swift
@@ -396,4 +396,10 @@ public struct UncheckedSendable<Value>: @unchecked Sendable {
396
_modify { yield &self.value[keyPath: keyPath] }
397
}
398
399
+
400
+extension UncheckedSendable: Equatable where Value: Equatable {
401
+ public static func == (lhs: UncheckedSendable, rhs: UncheckedSendable) -> Bool {
402
+ lhs.value == rhs.value
403
+ }
404
+}
405
#endif
0 commit comments