<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Tue, May 10, 2016 at 8:45 PM, Patrick Smith via swift-evolution <span dir="ltr">&lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word"><div>I think Type fits really well. Because every class, struct, and enum gets a static member called ‘Type’. But you can only use it outside the declaration (String.Type), not inside.</div><div><br></div><div>So similar to how types declared inside can be referenced:</div><div><br></div><div>struct A {</div><div>  enum Kind {</div><div>    case cat</div><div>    case dog</div><div>  }</div><div><br></div><div>  var kind: Kind // Use nested type here; I don’t have to write A.Kind</div><div>}</div><div><br></div><div><br></div><div>We could use Type in a similar way:</div><div><br></div><div>struct B {</div><div>  // This gets created automatically for every type, and is accessible today from B.Type</div><div>  //metatype Type { … }</div><div><br></div><div>  var children: [Type] // Use here in the same way as Kind above</div><div>}</div></div></blockquote><div><br></div><div>That&#39;s neat! My issue with it is that the analysis breaks down with protocols. If we extend it there, it&#39;s difficult to rationalize why Type has to mean the static type of the conforming class and Self has to mean the dynamic type.</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word"><div><br></div><br><div><blockquote type="cite"><div><div class="h5"><div>On 11 May 2016, at 8:32 AM, Matthew Johnson via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt; wrote:</div><br></div></div><div><div><div class="h5"><div dir="auto"><div><br><br>Sent from my iPad</div><div><br>On May 10, 2016, at 5:24 PM, Hooman Mehr &lt;<a href="mailto:hooman@mac.com" target="_blank">hooman@mac.com</a>&gt; wrote:<br><br></div><blockquote type="cite"><div><br><div><blockquote type="cite"><div>On May 10, 2016, at 2:49 PM, Matthew Johnson via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt; wrote:</div><div><blockquote type="cite" style="font-family:Helvetica;font-size:12px;font-style:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><div><div>That said, I’m not sure I understand the concrete use-cases.  When is this concept important?  When is “Self” not good enough?</div></div></blockquote><div style="font-family:Helvetica;font-size:12px;font-style:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><br></div><div style="font-family:Helvetica;font-size:12px;font-style:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px">The only case where there is new functionality is when this is used in a protocol requirement.  I gave an example earlier today.  </div></div></blockquote></div><br><div>This functionality is the key: Ability of an open (non-final) class to conform to a protocol that lets it return an instance of the conforming type (itself). Self does not work for that and we can’t change its behavior (or can we?) So one solution seems to be Matt’s proposal. This functionality is important for me and an example use case is class clusters. For the client code it is sealed and acts just like a final class, but internally it may return a subclass that is an implementation detail. We should be able to do this.</div></div></blockquote><div><br></div>Agree and this is why I am willing to write the proposal for this.  There was a discussion a few months ago about this problem and a few solutions were kicked around.  The biggest problem with this approach at the time was lack of a good name, which I believe we now have in Type.<div><br></div><div>I&#39;m going to let the discussion continue for a day or two and will write a proposal if no significant counter arguments arise.</div><div><br></div><div>-Matthew<br><div><br><blockquote type="cite"><div><div><br></div><div>Hooman</div></div></blockquote></div></div></div></div></div>_______________________________________________<span class=""><br>swift-evolution mailing list<br><a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a><br><a href="https://lists.swift.org/mailman/listinfo/swift-evolution" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br></span></div></blockquote></div><br></div><br>_______________________________________________<br>
swift-evolution mailing list<br>
<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a><br>
<a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br>
<br></blockquote></div><br></div></div>