<html><head><meta http-equiv="Content-Type" content="text/html charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><br class=""><div><blockquote type="cite" class=""><div class="">On Dec 28, 2015, at 12:43 PM, Joe Groff &lt;<a href="mailto:jgroff@apple.com" class="">jgroff@apple.com</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class=""><div style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""><blockquote type="cite" class=""><div class=""><br class="Apple-interchange-newline">On Dec 28, 2015, at 10:31 AM, Matthew Johnson &lt;<a href="mailto:matthew@anandabits.com" class="">matthew@anandabits.com</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class=""><div class="" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;"><blockquote type="cite" class=""><div class=""><br class="Apple-interchange-newline">On Dec 28, 2015, at 12:02 PM, Joe Groff &lt;<a href="mailto:jgroff@apple.com" class="">jgroff@apple.com</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class=""><blockquote type="cite" class="" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;"><br class="Apple-interchange-newline">On Dec 28, 2015, at 8:49 AM, Matthew Johnson via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a>&gt; wrote:<br class=""><br class="">I have brought up the idea of a non-covarying Self a few times. &nbsp;<br class=""><br class="">I was surprised to realize that Self is actually non-covarying when used for parameters in protocol declarations!<br class=""><br class="">Here is an example demonstrating this:<br class=""><br class="">protocol P {<br class="">&nbsp;&nbsp;func foo(s: Self)<br class="">}<br class="">protocol Q {<br class="">&nbsp;&nbsp;func bar() -&gt; Self<br class="">}<br class=""><br class="">class C: P {<br class="">&nbsp;&nbsp;// this works! &nbsp;Self as an argument type in the protocol declaration does not covary<br class="">&nbsp;&nbsp;func foo(c: C) {}<br class="">}<br class=""><br class="">class D: C {}<br class=""><br class="">extension C: Q {<br class="">&nbsp;&nbsp;// method ‘bar()’ in non-final class ‘C’ must return ‘Self’ to conform to protocol ‘Q'<br class="">&nbsp;&nbsp;func bar() -&gt; C { return self }<span class="Apple-converted-space">&nbsp;</span><br class="">}<br class=""><br class=""><br class="">It doesn’t make sense to allow a co-varying Self for parameters so I can understand how the current state might have arisen. &nbsp;At the same time, using Self to mean two different things is inconsistent, confusing and it doesn’t allow us to specify a non-covarying Self as a return type in protocol requirements. &nbsp;<br class=""><br class="">As I have pointed out before, the ability to specify a non-covarying Self as a return type would make it possible to design a protocol that can be retroactively conformed to by non-final classes (such as those in Apple’s frameworks).<br class=""><br class="">I think it would be a very good idea to introduce a non-covarying Self which would specify the type that adds conformance to the protocol and require this Self to be used in places where covariance is not possible, such as parameter types. &nbsp;It would also be allowed elsewhere, such as return types, making it easier to conform non-final classes when covariance is not required by the protocol.<br class=""><br class="">One possible name is `ConformingSelf`. &nbsp;One thing I like about this name is that it makes it very clear that it is the type that introduces protocol conformance.<br class=""><br class="">I’m interested in hearing thoughts on this.<br class=""></blockquote><br class="" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;"><span class="" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; float: none; display: inline !important;">I proposed this a while back — see "controlling protocol conformance inheritance" from a while back. The current rules preserve inheritability of the protocol conformance in all cases. `Self` in argument positions maps to the root class of the conformance, since a method taking `Base` can also take any `Derived` class and thereby satisfy the conformance for `Derived`. In return positions, the derived type must be produced. I think there's value in controlling this behavior, but the control belongs on the conformer's side, not the protocol's. For some class hierarchies, the subclasses are intended to be API themselves in order to extend behavior. Every UIView subclass is interesting independently, for example, and ought to satisfy `NSCoding` and other requirements independently. In other class hierarchies, the base class is intended to be the common API, and subclasses are just implementation details. NSString, NSURL, etc. exemplify this—for most purposes the common `NSCoding` implementation is sufficient for all NSStrings. Likewise, you probably want NSURL to conform to `StringLiteralConvertible` but don't particularly care what subclass you get out of the deal. I had proposed the idea of modifying a class's conformance declaration to allow it control whether the conformance is inherited:</span><br class="" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;"><br class="" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;"><span class="" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; float: none; display: inline !important;">extension NSString: static NSCoding { } // NSCoding conformance statically applies to only NSString, Self == NSString</span><br class="" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;"><span class="" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; float: none; display: inline !important;">extension UIView: required NSCoding { } // NSCoding conformance is required of all subclasses, Self &lt;= UIView</span><br class="" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;"><br class=""></div></blockquote><br class=""></div><div class="" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;">If I understand correctly, what you’re saying is that you don’t think there is a reason why a protocol would want to specifically require invariance. &nbsp;I would have to think about this some more but you may well be right. &nbsp;The conforming-side solution would definitely work in every use case I know of.</div><div class="" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;"><br class=""></div><div class="" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;">I figured out how Self protocol requirements are actually treated consistently from a particular perspective. &nbsp;Self is effectively treated as a covariant requirement, but becomes an invariant requirement when used in positions where covariance is not possible (parameters and return type for structs and final classes). &nbsp;This makes sense and is consistent, if not totally obvious. &nbsp;Is this reasonably accurate?</div></div></blockquote><div class=""><br class=""></div><div class="">Yeah. It might help to think of `Self` within the protocol as referring to the full range of types [BaseClass, Self] that are required to conform to the protocol. Covariance and contravariance push the interval in opposite directions; in argument position, you need to cover the range by specifying its upper bound `BaseClass`, but in return position, you need to specify the lower bound `Self`.</div></div></div></blockquote><div><br class=""></div><div>That makes sense.</div><br class=""><blockquote type="cite" class=""><div class=""><div style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""><br class=""><blockquote type="cite" class=""><div class=""><div class="" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;"><br class=""></div><div class="" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;">From that perspective, it seems Self should also behave this way when used as a return type in method signatures:</div><div class="" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;"><br class=""></div><div class="" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;">protocol&nbsp;P {<br class="">&nbsp; &nbsp;&nbsp;func&nbsp;bar() -&gt;&nbsp;Self<br class="">}<br class="">final&nbsp;class&nbsp;C:&nbsp;P&nbsp;{</div><div class="" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;">&nbsp; &nbsp; // this doesn’t work, but maybe it should because C is final and can’t covary:<br class="">&nbsp; &nbsp;&nbsp;func&nbsp;bar() -&gt;&nbsp;Self&nbsp;{&nbsp;return&nbsp;C() }</div><div class="" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;"><br class=""></div><div class="" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;">&nbsp; &nbsp; // this works:</div><div class="" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;">&nbsp; &nbsp; // func&nbsp;bar() -&gt;&nbsp;C&nbsp;{&nbsp;return&nbsp;C() }<br class="">}<br class=""><br class=""></div><div class="" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;">struct&nbsp;S:&nbsp;P&nbsp;{</div><div class="" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;">&nbsp; &nbsp; // this doesn’t work, but maybe it should because S is a struct and can’t covary:<br class="">&nbsp; &nbsp;&nbsp;func&nbsp;bar() -&gt;&nbsp;Self&nbsp;{&nbsp;return&nbsp;S() }</div><div class="" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;"><div class=""><br class=""></div><div class="">&nbsp; &nbsp; // this works:</div><div class="">&nbsp; &nbsp; // func&nbsp;bar() -&gt;&nbsp;S&nbsp;{&nbsp;return&nbsp;S() }</div>}<br class=""></div></div></blockquote><div class=""><br class=""></div><div class="">Yeah, it would be nice if we treated `Self` consistently. For an invariant type like a final class or struct, it would always be synonymous with the declared type.</div></div></div></blockquote><blockquote type="cite" class=""><div style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""><br class=""><blockquote type="cite" class=""><div class=""><div class="" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;"><br class=""></div><div class="" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;">This thread was prompted by work on a proposal for protocol forwarding which requires careful consideration of Self requirements. &nbsp;</div><div class="" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;"><br class=""></div><div class="" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;">One of the things I have considered is whether it would be possible and desirable to wrap and forward the entire interface of a type rather than just specific protocols. &nbsp;As it turns out, this is not possible in a robust manner without using Self in the signature where the type should be promoted to the forwarding type (i.e. just because a method on Double takes a Double parameter you don’t necessarily want to promote the type of that parameter to Kilograms when wrapping Double).</div></div></blockquote><br class=""></div><div style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class="">Interesting idea. I worry that that's a very subtle difference between `TypeName` and `Self`. I think you also really would need a separate `InvariantSelf` specifier for classes that are both forwardable and inheritable.</div><div style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""><br class=""></div></blockquote><br class=""></div><div>Yeah, I think it is an idea that seems good at first but has a lot of problems. &nbsp;Even if the language supported the necessary signatures and the standard library got them right I imagine many people would be confused and get them wrong in practice.</div><div><br class=""></div><div>With protocol forwarding you can still forward at least most of the interface, even retroactively. &nbsp;Any method that can be declared in a protocol and conformed to by the delegate would be possible to forward. &nbsp;With more control over how conformance is inherited it might be possible to forward without limitation (I haven’t considered it deeply enough to find potential limits, but they may still exist). &nbsp;The only cost is the need to declare a protocol with the signatures you need to forward and declare conformance by the delegate. &nbsp;In some cases this might feel like boilerplate, but it would only need to happen once and the delegate could then be wrapped N times so it isn’t too bad.</div><div><br class=""></div><div>If protocol forwarding can cover all, or nearly all, necessary cases I’m not sure the complexity of direct interface forwarding would be worth the added complexity. &nbsp;My instinct is that it probably would not be.</div><div><br class=""></div><div>Matthew</div></body></html>