import Foundation protocol MyProtocol: Equatable, Hashable {} extension NSPoint: MyProtocol { // Warning: Extension declares a conformance of imported type 'CGPoint' to imported protocols 'Hashable', 'Equatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future public func hash(into hasher: inout Hasher) { fatalError("Not implemented") } public static func == (lhs: CGPoint, rhs: CGPoint) -> Bool { fatalError("Not implemented") } }
これFixしたらEquatable, Hashableのconformanceが個別にできるんですね。extension CGPoint: @retroactive Hashable, @retroactive Equatable {}
のほうが多少記述量が少ない。 実際やってるプロジェクトで5つくらいのprotocolをまとめたprotocolがあって、適合させる外部の型も複数あるという状態なんですが、全件にこれ書くの嫌な感じが…