<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 Jun 8, 2016, at 4:47 PM, Austin Zheng &lt;<a href="mailto:austinzheng@gmail.com" class="">austinzheng@gmail.com</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class=""><div dir="ltr" class="">FWIW my opinion is that existentials either shouldn't be allowed to stand in for generic type parameters, or Dave's option #1 if they are.<div class=""><br class=""></div><div class="">The implied promise of a generic type parameter T right now is that T always stands for the same concrete type (modulo things like passing in a subclass where a class would do), and likewise for all of T's associated types (T.Foo is always the same type everywhere in the context where T is valid). This is what makes using anything with 'self' requirements in a generic context sound. Allowing existentials to satisfy T would violate that constraint.&nbsp;</div><div class=""><br class=""></div><div class="">Relaxing these semantics would make it too easy to write code that traps at runtime "without the user having to reach" (to paraphrase Jordan from the "Swift philosophy" thread). Anyone who really really wants to write code that is 'compile-time unsound' in this way should have to explicitly type erase using concrete wrappers.</div></div></div></blockquote><div><br class=""></div><div>Yes, exactly.</div><br class=""><blockquote type="cite" class=""><div class=""><div dir="ltr" class=""><div class=""><br class=""></div><div class="">Best,</div><div class="">Austin</div><div class=""><br class=""></div></div><div class="gmail_extra"><br class=""><div class="gmail_quote">On Wed, Jun 8, 2016 at 2:37 PM, Austin Zheng <span dir="ltr" class="">&lt;<a href="mailto:austinzheng@gmail.com" target="_blank" class="">austinzheng@gmail.com</a>&gt;</span> wrote:<br class=""><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr" class=""><div class="">We might be talking past each other. I think Matthew is talking about using an existential outside the context of generic functions. For example, something like this should be trap-proof (as long as 'x' is immutable, which it is in this example):</div><div class=""><br class=""></div><div class="">func copySequenceIntoArray(x: Any&lt;Sequence where .Iterator.Element == Int&gt;) -&gt; [Int] {</div><div class=""><span style="white-space:pre-wrap" class="">        </span>var buffer : [Int] = []</div><div class="">&nbsp; &nbsp; &nbsp; &nbsp; // Stupid implementation to make a point</div><div class=""><span style="white-space:pre-wrap" class="">        </span>var iterator : x.Iterator = x.makeIterator()</div><div class=""><span style="white-space:pre-wrap" class="">        </span>while true {</div><div class=""><span style="white-space:pre-wrap" class="">                </span>let nextItem : Int? = iterator.next()</div><div class=""><span style="white-space:pre-wrap" class="">                </span>if let nextItem = nextItem {</div><div class=""><span style="white-space:pre-wrap" class="">                        </span>buffer.append(nextItem)</div><div class=""><span style="white-space:pre-wrap" class="">                </span>} else {</div><div class=""><span style="white-space:pre-wrap" class="">                        </span>return buffer</div><div class=""><span style="white-space:pre-wrap" class="">                </span>}</div><div class=""><span style="white-space:pre-wrap" class="">        </span>}</div><div class="">}</div><div class=""><br class=""></div><div class="">Even this would never trap as well:</div><div class=""><br class=""></div><div class="">func copySequenceIntoArray&lt;T&gt;(x: Any&lt;Sequence where .Iterator.Element == T&gt;) -&gt; [T] {</div><div class=""><span style="white-space:pre-wrap" class="">        </span>var buffer : [T] = []</div><div class=""><span style="white-space:pre-wrap" class="">        </span>for item in x {</div><div class=""><span style="white-space:pre-wrap" class="">                </span>buffer.append(item)</div><div class=""><span style="white-space:pre-wrap" class="">        </span>}</div><div class=""><span style="white-space:pre-wrap" class="">        </span>return buffer</div><div class="">}</div><div class=""><br class=""></div><div class="">Where we run into difficulty is something like this (forgive my abuse of the collections API; I don't remember all the new indexing APIs off the top of my head):</div><div class=""><br class=""></div><div class="">func doSomething&lt;T : Collection where T.Element == Int&gt;(x: T, y: T) {</div><div class=""><span style="white-space:pre-wrap" class="">        </span>// Get indexes out of x and use them to index into y</div><div class=""><span style="white-space:pre-wrap" class="">        </span>var idx = x.startIndex</div><div class=""><span style="white-space:pre-wrap" class="">        </span>while (idx != x.endIndex || idx != y.endIndex) {</div><div class=""><span style="white-space:pre-wrap" class="">                </span>print(x[idx])</div><div class=""><span style="white-space:pre-wrap" class="">                </span>print(y[idx])</div><div class=""><span style="white-space:pre-wrap" class="">                </span>idx = x.nextIndex(idx)</div><div class=""><span style="white-space:pre-wrap" class="">        </span>}</div><div class="">}</div><div class="">let someSeq : Any&lt;Collection where .Element == Int&gt; = // ...</div><div class="">let anotherSeq : Any&lt;Collection where .Element == Int&gt; = // ...</div><div class="">// Trouble!</div><div class="">// someSeq and anotherSeq are the same existential type</div><div class="">// But the concrete index types within each of the existential variables may be different</div><div class="">doSomething(someSeq, anotherSeq)</div><div class=""><br class=""></div><div class="">It's this situation (using an existential type to fulfill a generic type parameter constrained to the same requirements that comprise that existential) that requires either of the two options that Dave presented, due to our lack of compile-time type information about the fulfilling type's associated types.</div><div class=""><br class=""></div><div class="">Best,</div><div class="">Austin</div></div><div class="HOEnZb"><div class="h5"><div class="gmail_extra"><br class=""><div class="gmail_quote">On Wed, Jun 8, 2016 at 2:33 PM, Matthew Johnson via swift-evolution <span dir="ltr" class="">&lt;<a href="mailto:swift-evolution@swift.org" target="_blank" class="">swift-evolution@swift.org</a>&gt;</span> wrote:<br class=""><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><br class="">
<br class="">
Sent from my iPad<br class="">
<span class=""><br class="">
&gt; On Jun 8, 2016, at 3:16 PM, Dave Abrahams via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" target="_blank" class="">swift-evolution@swift.org</a>&gt; wrote:<br class="">
&gt;<br class="">
&gt;<br class="">
&gt;&gt; on Wed Jun 08 2016, Thorsten Seitz &lt;<a href="mailto:swift-evolution@swift.org" target="_blank" class="">swift-evolution@swift.org</a>&gt; wrote:<br class="">
&gt;&gt;<br class="">
&gt;&gt; Ah, thanks, I forgot!&nbsp; I still consider this a bug, though (will have<br class="">
&gt;&gt; to read up again what the reasons are for that behavior).<br class="">
&gt;<br class="">
&gt; Yes, but in the case of the issue we're discussing, the choices are:<br class="">
&gt;<br class="">
&gt; 1. Omit from the existential's API any protocol requirements that depend<br class="">
&gt;&nbsp; &nbsp;on Self or associated types, in which case it *can't* conform to<br class="">
&gt;&nbsp; &nbsp;itself because it doesn't fulfill the requirements.<br class="">
<br class="">
</span>They don't need to be omitted.&nbsp; They are exposed in different ways depending on how the existential is constrained.&nbsp; Austin's proposal was originally written to omit some members but it was modified based on feedback from Doug Gregor IIRC (Austin, is that right?).&nbsp; Now it contains examples showing how these members are made available in a safe way.&nbsp; &nbsp;Some members may still not be usable because you can't form an argument but IIRC the suggestion was that they be exposed anyway for consistency.<br class="">
<div class=""><div class=""><br class="">
&gt;<br class="">
&gt; 2. Erase type relationships and trap at runtime when they don't line up.<br class="">
&gt;<br class="">
&gt; Matthew has been arguing against #2, but you can't “fix the bug” without<br class="">
&gt; it.<br class="">
&gt;<br class="">
&gt;&gt;<br class="">
&gt;&gt; -Thorsten<br class="">
&gt;&gt;<br class="">
&gt;&gt;&gt; Am 08.06.2016 um 21:43 schrieb Austin Zheng &lt;<a href="mailto:austinzheng@gmail.com" target="_blank" class="">austinzheng@gmail.com</a>&gt;:<br class="">
&gt;&gt;&gt;<br class="">
&gt;&gt;&gt; It's not possible, even with Swift's current implementation of<br class="">
&gt;&gt;&gt; existentials. A protocol type P isn't considered to conform to<br class="">
&gt;&gt;&gt; itself, thus the following is rejected:<br class="">
&gt;&gt;&gt;<br class="">
&gt;&gt;&gt; let a : MyProtocol = // ...<br class="">
&gt;&gt;&gt; func myFunc&lt;T : MyProtocol&gt;(x: T) {<br class="">
&gt;&gt;&gt;&nbsp; // ....<br class="">
&gt;&gt;&gt; }<br class="">
&gt;&gt;&gt; myFunc(a) // "Cannot invoke 'myFunc' with an argument list of type MyProtocol"<br class="">
&gt;&gt;&gt;<br class="">
&gt;&gt;&gt; Changing how this works is probably worth a proposal by itself.<br class="">
&gt;&gt;&gt;<br class="">
&gt;&gt;&gt; Austin<br class="">
&gt;&gt;&gt;<br class="">
&gt;&gt;&gt;<br class="">
&gt;&gt;&gt; On Wed, Jun 8, 2016 at 12:34 PM, Thorsten Seitz via swift-evolution<br class="">
&gt;&gt;&gt; &lt;<a href="mailto:swift-evolution@swift.org" target="_blank" class="">swift-evolution@swift.org</a><br class="">
&gt;&gt;&gt; &lt;mailto:<a href="mailto:swift-evolution@swift.org" target="_blank" class="">swift-evolution@swift.org</a>&gt;&gt;<br class="">
&gt;&gt;&gt; wrote:<br class="">
&gt;&gt;&gt;<br class="">
&gt;&gt;&gt;&gt; Am 08.06.2016 um 20:33 schrieb Dave Abrahams via swift-evolution<br class="">
&gt;&gt;&gt;&gt; &lt;<a href="mailto:swift-evolution@swift.org" target="_blank" class="">swift-evolution@swift.org</a><br class="">
&gt;&gt;&gt;&gt; &lt;mailto:<a href="mailto:swift-evolution@swift.org" target="_blank" class="">swift-evolution@swift.org</a>&gt;&gt;:<br class="">
&gt;&gt;&gt;&gt;<br class="">
&gt;&gt;&gt;&gt;<br class="">
&gt;&gt;&gt;&gt; on Tue Jun 07 2016, Matthew Johnson &lt;<a href="http://matthew-at-anandabits.com" class="">matthew-AT-anandabits.com</a>&gt; wrote:<br class="">
&gt;&gt;&gt;&gt;<br class="">
&gt;&gt;&gt;&gt;&gt;&gt; On Jun 7, 2016, at 9:15 PM, Dave Abrahams<br class="">
&gt;&gt;&gt;&gt;&gt;&gt; &lt;<a href="mailto:dabrahams@apple.com" target="_blank" class="">dabrahams@apple.com</a><br class="">
&gt;&gt;&gt;&gt;&gt;&gt; &lt;mailto:<a href="mailto:dabrahams@apple.com" target="_blank" class="">dabrahams@apple.com</a>&gt;&gt;<br class="">
&gt;&gt;&gt;&gt;&gt;&gt; wrote:<br class="">
&gt;&gt;&gt;&gt;&gt;&gt;<br class="">
&gt;&gt;&gt;&gt;&gt;&gt;<br class="">
&gt;&gt;&gt;&gt;&gt;&gt; on Tue Jun 07 2016, Matthew Johnson &lt;<a href="http://matthew-at-anandabits.com" class="">matthew-AT-anandabits.com</a><br class="">
&gt;&gt;&gt;&gt;&gt;&gt; &lt;<a href="http://matthew-at-anandabits.com/" rel="noreferrer" target="_blank" class="">http://matthew-at-anandabits.com/</a><br class="">
&gt;&gt;&gt;&gt;&gt;&gt; &lt;<a href="http://matthew-at-anandabits.com/" rel="noreferrer" target="_blank" class="">http://matthew-at-anandabits.com/</a>&gt;&gt;&gt; wrote:<br class="">
&gt;&gt;&gt;&gt;&gt;<br class="">
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; On Jun 7, 2016, at 4:13 PM, Dave Abrahams via swift-evolution<br class="">
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; &lt;<a href="mailto:swift-evolution@swift.org" target="_blank" class="">swift-evolution@swift.org</a><br class="">
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; &lt;mailto:<a href="mailto:swift-evolution@swift.org" target="_blank" class="">swift-evolution@swift.org</a>&gt;&gt;<br class="">
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; wrote:<br class="">
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br class="">
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br class="">
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; on Tue Jun 07 2016, Matthew Johnson<br class="">
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; &lt;<a href="mailto:swift-evolution@swift.org" target="_blank" class="">swift-evolution@swift.org</a><br class="">
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; &lt;mailto:<a href="mailto:swift-evolution@swift.org" target="_blank" class="">swift-evolution@swift.org</a>&gt;&gt;<br class="">
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; wrote:<br class="">
&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br class="">
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; , but haven't realized<br class="">
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; that if you step around the type relationships encoded in Self<br class="">
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; requirements and associated types you end up with types that appear to<br class="">
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; interoperate but in fact trap at runtime unless used in exactly the<br class="">
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; right way.<br class="">
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br class="">
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; Trap at runtime?&nbsp; How so?&nbsp; Generalized existentials should still be<br class="">
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; type-safe.<br class="">
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br class="">
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; There are two choices when you erase static type relationships:<br class="">
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br class="">
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; 1. Acheive type-safety by trapping at runtime<br class="">
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br class="">
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; FloatingPoint(3.0 as Float) + FloatingPoint(3.0 as Double) // trap<br class="">
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br class="">
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; 2. Don't expose protocol requirements that involve these relationships,<br class="">
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; which would prevent the code above from compiling and prevent<br class="">
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; FloatingPoint from conforming to itself.<br class="">
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br class="">
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; Or are you talking about the hypothetical types / behaviors people<br class="">
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; think they want when they don’t fully understand what is happening...<br class="">
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br class="">
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; I don't know what you mean here.&nbsp; I think generalized existentials will<br class="">
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; be nice to have, but I think most people will want them to do something<br class="">
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; they can't possibly do.<br class="">
&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br class="">
&gt;&gt;&gt;&gt;&gt;&gt;&gt; Exactly.&nbsp; What I meant is that people think they want that expression<br class="">
&gt;&gt;&gt;&gt;&gt;&gt;&gt; to compile because they don’t understand that the only thing it can do<br class="">
&gt;&gt;&gt;&gt;&gt;&gt;&gt; is trap.&nbsp; I said “hypothetical” because producing a compile time error<br class="">
&gt;&gt;&gt;&gt;&gt;&gt;&gt; rather than a runtime trap is the only sane thing to do.&nbsp; Your comment<br class="">
&gt;&gt;&gt;&gt;&gt;&gt;&gt; surprised me because I can’t imagine we would move forward in Swift<br class="">
&gt;&gt;&gt;&gt;&gt;&gt;&gt; with the approach of trapping.<br class="">
&gt;&gt;&gt;&gt;&gt;&gt;<br class="">
&gt;&gt;&gt;&gt;&gt;&gt; I would very much like to be able to create instances of “Collection<br class="">
&gt;&gt;&gt;&gt;&gt;&gt; where Element == Int” so we can throw away the wrappers in the stdlib.<br class="">
&gt;&gt;&gt;&gt;&gt;&gt; That will require some type mismatches to be caught at runtime via<br class="">
&gt;&gt;&gt;&gt;&gt;&gt; trapping.<br class="">
&gt;&gt;&gt;&gt;&gt;<br class="">
&gt;&gt;&gt;&gt;&gt; For invalid index because the existential accepts a type erased index?<br class="">
&gt;&gt;&gt;&gt;<br class="">
&gt;&gt;&gt;&gt; Exactly.<br class="">
&gt;&gt;&gt;&gt;<br class="">
&gt;&gt;&gt;&gt;&gt; How do you decide where to draw the line here?&nbsp; It feels like a very<br class="">
&gt;&gt;&gt;&gt;&gt; slippery slope for a language where safety is a stated priority to<br class="">
&gt;&gt;&gt;&gt;&gt; start adopting a strategy of runtime trapping for something as<br class="">
&gt;&gt;&gt;&gt;&gt; fundamental as how you expose members on an existential.<br class="">
&gt;&gt;&gt;&gt;<br class="">
&gt;&gt;&gt;&gt; If you don't do this, the alternative is that “Collection where Element<br class="">
&gt;&gt;&gt;&gt; == Int” does not conform to Collection.&nbsp; That's weird and not very<br class="">
&gt;&gt;&gt;&gt; useful.&nbsp; You could expose all the methods that were on protocol<br class="">
&gt;&gt;&gt;&gt; extensions of Collection on this existential, unless they used<br class="">
&gt;&gt;&gt;&gt; associated types other than the element type.&nbsp; But you couldn't pass the<br class="">
&gt;&gt;&gt;&gt; existential to a generic function like<br class="">
&gt;&gt;&gt;&gt;<br class="">
&gt;&gt;&gt;&gt;&nbsp; func scrambled&lt;C: Collection&gt;(_ c: C) -&gt; [C.Element]<br class="">
&gt;&gt;&gt;<br class="">
&gt;&gt;&gt; I don’t understand. Why couldn’t an existential be passed to that function?<br class="">
&gt;&gt;&gt;<br class="">
&gt;&gt;&gt; -Thorsten<br class="">
&gt;&gt;&gt;<br class="">
&gt;&gt;&gt;<br class="">
&gt;&gt;&gt;<br class="">
&gt;&gt;&gt;&gt;<br class="">
&gt;&gt;&gt;&gt;&gt; IMO you should *have* to introduce unsafe behavior like that manually.<br class="">
&gt;&gt;&gt;&gt;<br class="">
&gt;&gt;&gt;&gt; Collection where Element == Int &amp; Index == *<br class="">
&gt;&gt;&gt;&gt;<br class="">
&gt;&gt;&gt;&gt; ?<br class="">
&gt;&gt;&gt;&gt;<br class="">
&gt;&gt;&gt;&gt;&gt; Collection indices are already something that isn’t fully statically<br class="">
&gt;&gt;&gt;&gt;&gt; safe so I understand why you might want to allow this.<br class="">
&gt;&gt;&gt;&gt;<br class="">
&gt;&gt;&gt;&gt; By the same measure, so are Ints :-)<br class="">
&gt;&gt;&gt;&gt;<br class="">
&gt;&gt;&gt;&gt; The fact that a type's methods have preconditions does *not* make it<br class="">
&gt;&gt;&gt;&gt; “statically unsafe.”<br class="">
&gt;&gt;&gt;&gt;<br class="">
&gt;&gt;&gt;&gt;&gt; But I don’t think having the language's existentials do this<br class="">
&gt;&gt;&gt;&gt;&gt; automatically is the right approach.&nbsp; Maybe there is another approach<br class="">
&gt;&gt;&gt;&gt;&gt; that could be used in targeted use cases where the less safe behavior<br class="">
&gt;&gt;&gt;&gt;&gt; makes sense and is carefully designed.<br class="">
&gt;&gt;&gt;&gt;<br class="">
&gt;&gt;&gt;&gt; Whether it makes sense or not really depends on the use-cases.&nbsp; There's<br class="">
&gt;&gt;&gt;&gt; little point in generalizing existentials if the result isn't very useful.<br class="">
&gt;&gt;&gt;&gt; The way to find out is to take a look at the examples we currently have<br class="">
&gt;&gt;&gt;&gt; of protocols with associated types or Self requirements and consider<br class="">
&gt;&gt;&gt;&gt; what you'd be able to do with their existentials if type relationships<br class="">
&gt;&gt;&gt;&gt; couldn't be erased.<br class="">
&gt;&gt;&gt;&gt;<br class="">
&gt;&gt;&gt;&gt; We have known use-cases, currently emulated in the standard library, for<br class="">
&gt;&gt;&gt;&gt; existentials with erased type relationships.&nbsp; *If* these represent the<br class="">
&gt;&gt;&gt;&gt; predominant use cases for something like generalized existentials, it<br class="">
&gt;&gt;&gt;&gt; seems to me that the language feature should support that.&nbsp; Note: I have<br class="">
&gt;&gt;&gt;&gt; not seen anyone build an emulation of the other kind of generalized<br class="">
&gt;&gt;&gt;&gt; existential.&nbsp; My theory: there's a good reason for that :-).<br class="">
&gt;&gt;&gt;&gt;<br class="">
&gt;&gt;&gt;&gt; --<br class="">
&gt;&gt;&gt;&gt; Dave<br class="">
&gt;&gt;&gt;&gt; _______________________________________________<br class="">
&gt;&gt;&gt;&gt; swift-evolution mailing list<br class="">
&gt;&gt;&gt;&gt; <a href="mailto:swift-evolution@swift.org" target="_blank" class="">swift-evolution@swift.org</a><br class="">
&gt;&gt;&gt;&gt; &lt;mailto:<a href="mailto:swift-evolution@swift.org" target="_blank" class="">swift-evolution@swift.org</a>&gt;<br class="">
&gt;&gt;&gt;&gt; <a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank" class="">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br class="">
&gt;&gt;&gt;&gt; &lt;<a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank" class="">https://lists.swift.org/mailman/listinfo/swift-evolution</a>&gt;<br class="">
&gt;&gt;&gt;<br class="">
&gt;&gt;&gt; _______________________________________________<br class="">
&gt;&gt;&gt; swift-evolution mailing list<br class="">
&gt;&gt;&gt; <a href="mailto:swift-evolution@swift.org" target="_blank" class="">swift-evolution@swift.org</a><br class="">
&gt;&gt;&gt; &lt;mailto:<a href="mailto:swift-evolution@swift.org" target="_blank" class="">swift-evolution@swift.org</a>&gt;<br class="">
&gt;&gt;&gt; <a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank" class="">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br class="">
&gt;&gt;&gt; &lt;<a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank" class="">https://lists.swift.org/mailman/listinfo/swift-evolution</a>&gt;<br class="">
&gt;&gt;<br class="">
&gt;&gt; _______________________________________________<br class="">
&gt;&gt; swift-evolution mailing list<br class="">
&gt;&gt; <a href="mailto:swift-evolution@swift.org" target="_blank" class="">swift-evolution@swift.org</a><br class="">
&gt;&gt; <a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank" class="">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br class="">
&gt;<br class="">
&gt; --<br class="">
&gt; Dave<br class="">
&gt;<br class="">
&gt; _______________________________________________<br class="">
&gt; swift-evolution mailing list<br class="">
&gt; <a href="mailto:swift-evolution@swift.org" target="_blank" class="">swift-evolution@swift.org</a><br class="">
&gt; <a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank" class="">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br class="">
<br class="">
_______________________________________________<br class="">
swift-evolution mailing list<br class="">
<a href="mailto:swift-evolution@swift.org" target="_blank" class="">swift-evolution@swift.org</a><br class="">
<a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank" class="">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br class="">
</div></div></blockquote></div><br class=""></div>
</div></div></blockquote></div><br class=""></div>
</div></blockquote></div><br class=""></body></html>