Last active
September 11, 2024 14:15
-
-
Save soffes/b085c108f9ad1c804a13 to your computer and use it in GitHub Desktop.
Add Equatable to CLLocationCoordinate2D
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import CoreLocation | |
extension CLLocationCoordinate2D: Equatable {} | |
public func ==(lhs: CLLocationCoordinate2D, rhs: CLLocationCoordinate2D) -> Bool { | |
return lhs.latitude == rhs.latitude && lhs.longitude == rhs.longitude | |
} |
Should probably update the float equality to use .ulpOfOne
instead of ==
at some point
Should probably update the float equality to use
.ulpOfOne
instead of==
at some point
made me curious about ulp. it's actually the difference to the next representable number, and is not a good equality indicator (ex 0.5 and 0.6 both have the same ulp, 1.1102230246251565e-16 for double and 5.9604645e-08 for float
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@x4m3 thanks! Added the import :)