Skip to content

Instantly share code, notes, and snippets.

@soffes
Last active October 4, 2023 18:50
Show Gist options
  • Save soffes/b085c108f9ad1c804a13 to your computer and use it in GitHub Desktop.
Save soffes/b085c108f9ad1c804a13 to your computer and use it in GitHub Desktop.
Add Equatable to CLLocationCoordinate2D
import CoreLocation
extension CLLocationCoordinate2D: Equatable {}
public func ==(lhs: CLLocationCoordinate2D, rhs: CLLocationCoordinate2D) -> Bool {
return lhs.latitude == rhs.latitude && lhs.longitude == rhs.longitude
}
@soffes
Copy link
Author

soffes commented Feb 1, 2022

Should probably update the float equality to use .ulpOfOne instead of == at some point

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment