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 9b45fc4 commit 5ed93b5Copy full SHA for 5ed93b5
stdlib/public/core/CollectionDifference.swift
@@ -212,7 +212,10 @@ extension CollectionDifference : Collection {
212
213
// Opaque index type is isomorphic to Int
214
public struct Index: Comparable, Hashable {
215
- public static func < (lhs: CollectionDifference<ChangeElement>.Index, rhs: CollectionDifference<ChangeElement>.Index) -> Bool {
+ public static func < (
216
+ lhs: CollectionDifference<ChangeElement>.Index,
217
+ rhs: CollectionDifference<ChangeElement>.Index
218
+ ) -> Bool {
219
return lhs.i < rhs.i
220
}
221
0 commit comments