Marco Piovanelli
Results
2
comments of
Marco Piovanelli
Since this issue doesn't appear to be fixed as of version 5.2.10 of the iOS SDK, here's a tip for people like me who have to maintain old projects with...
For reference, here's an even simpler code snippet that triggers a false positive: ```swift public extension Array where Element: Comparable { var maxIndex: Int? { self.enumerated().max { $0.element < $1.element...