[swift-evolution] [Accepted] SE-0185 - Synthesizing Equatable and Hashable conformance

Daryle Walker darylew at mac.com
Mon Aug 21 01:08:50 CDT 2017


> On Aug 19, 2017, at 3:29 PM, Haravikk via swift-evolution <swift-evolution at swift.org> wrote:
> 
>> On 19 Aug 2017, at 19:46, Daryle Walker <darylew at mac.com <mailto:darylew at mac.com>> wrote:
>> 
>>> On Aug 19, 2017, at 7:06 AM, Haravikk via swift-evolution <swift-evolution at swift.org <mailto:swift-evolution at swift.org>> wrote:
>>> 
>>> Agreed. To be clear though; in spite of my pessimism this is a feature that I do want, but I would rather not have it at all than have it implemented in a way that hides bugs and sets a horrible precedent for the future.
>> 
>> I tried to make a split thread for this, but would you object to synthesized conformance if we had to explicitly add a command within the definition block to trigger the synthesis? If we add strong type-aliases, we could reuse the directive to copy an interface (method, inner type, property, or conformed-to protocol) from the underlying type to the current type for synthesis too. The only problem would be backward compatibility; once added, we would urge users to explicitly list “publish Equatable” for synthesis, but what about code that already uses the implicit version (since this feature will probably be released for at least one Swift version by the time strong type-aliases happen), do we force users to change their code?
> 
> I would rather no code at all use the implicit version; one of my points is that it's not something that's easily changed after the fact, which is why it needs to be done correctly now.
> 
> I'm open to any method that makes opting in to the synthesised conformance explicit; I still think a specifically named protocol is the simplest, but I'm not married to that as a solution; attributes, keywords etc. are all fine too, whatever is the easiest way to opt-in to the behaviour explicitly without ambiguity. I'm not 100% sure exactly what you mean by "add a command within the definition block", or is an attribute/keyword what you meant?

The syntax to copy an interface from an underlying type to one of its strong type-aliases is a new directive within the definition block:

alter MyInt16: Int16, Hashable {
publish Equatable  // Automatically copies definitions from Int16 needed to conform to Equatable
var hashValue: Int { /*…*/ }  // A protocol can be completed with a mix of published and direct definitions
}

Since we would be introducing an explicit way to declare implementation of a conformance (the “publish” directive), we could reuse the directive for Equatable/Hashable/Encodable/Decodable definitions in non-strong-aliases and make the current implicit definitions obsolete. The problem then would be backwards compatibility; could we force users to go from implicit to explicit synthesized conformance?

The original point of publishing is to selectively control which parts of the underlying type’s interface get copied. Automatically synthesized conformance, if it stays after strong type-aliases are introduced, would screw with that (unless synthesized conformance is ignored for strong type-aliases; i.e. our conformance exception gets a counter exception).

— 
Daryle Walker
Mac, Internet, and Video Game Junkie
darylew AT mac DOT com 

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.swift.org/pipermail/swift-evolution/attachments/20170821/06f036e8/attachment.html>


More information about the swift-evolution mailing list