File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ The `Delta` type also conforms to all standard protocols (depending on the confo
23
23
24
24
- ` Equatable `
25
25
- ` Hashable `
26
+ - ` CustomDebugStringConvertible `
26
27
- ` Encodable `
27
28
- ` Decodable `
28
29
- ` Sendable `
Original file line number Diff line number Diff line change @@ -257,6 +257,10 @@ extension Delta: Copyable where Element: Copyable {
257
257
}
258
258
}
259
259
260
+ extension Delta : Equatable where Element: Equatable { }
261
+
262
+ extension Delta : Hashable where Element: Hashable { }
263
+
260
264
extension Delta : CustomDebugStringConvertible {
261
265
public var debugDescription : String {
262
266
switch self {
@@ -270,10 +274,6 @@ extension Delta: CustomDebugStringConvertible {
270
274
}
271
275
}
272
276
273
- extension Delta : Equatable where Element: Equatable { }
274
-
275
- extension Delta : Hashable where Element: Hashable { }
276
-
277
277
public extension Delta where Element: ~ Copyable {
278
278
enum CodingKeys : String , CodingKey {
279
279
case source = " A "
You can’t perform that action at this time.
0 commit comments