<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 Jul 22, 2016, at 8:37 PM, Xiaodi Wu via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class=""><div dir="ltr" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: 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="">On Fri, Jul 22, 2016 at 8:20 PM, Dave Abrahams via swift-evolution<span class="Apple-converted-space">&nbsp;</span><span dir="ltr" class="">&lt;<a href="mailto:swift-evolution@swift.org" target="_blank" class="">swift-evolution@swift.org</a>&gt;</span><span class="Apple-converted-space">&nbsp;</span>wrote:<br class=""><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin: 0px 0px 0px 0.8ex; border-left-width: 1px; border-left-color: rgb(204, 204, 204); border-left-style: solid; padding-left: 1ex;"><span class="gmail-"><br class="">on Fri Jul 22 2016, Daniel Duan &lt;<a href="http://daniel-at-duan.org" class="">daniel-AT-duan.org</a>&gt; wrote:<br class=""><br class="">&gt;&gt; On Jul 22, 2016, at 3:00 PM, Dave Abrahams via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a>&gt; wrote:<br class="">&gt;&gt;<br class="">&gt;&gt;<br class=""></span><span class="gmail-">&gt;&gt; on Fri Jul 22 2016, Daniel Duan &lt;<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a><span class="Apple-converted-space">&nbsp;</span>&lt;mailto:<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a>&gt;&gt; wrote:<br class="">&gt;&gt;<br class="">&gt;<br class="">&gt;&gt;&gt;&gt; On Jul 22, 2016, at 11:05 AM, Dave Abrahams via swift-evolution<br class=""></span><span class="gmail-">&gt;&gt;&gt;&gt; &lt;<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a><span class="Apple-converted-space">&nbsp;</span>&lt;mailto:<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a>&gt;&gt; wrote:<br class="">&gt;&gt;&gt;&gt;<br class="">&gt;&gt;&gt;&gt;<br class="">&gt;&gt;&gt;&gt; on Thu Jul 21 2016, Duan<br class="">&gt;&gt;&gt;<br class="">&gt;&gt;&gt;&gt; &lt;<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a><span class="Apple-converted-space">&nbsp;</span>&lt;mailto:<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a>&gt;<br class=""></span>&gt;&gt;&gt;&gt; &lt;mailto:<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a><span class="Apple-converted-space">&nbsp;</span>&lt;mailto:<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a>&gt;&gt;&gt;<br class=""><span class="gmail-">&gt;&gt;&gt;&gt; wrote:<br class="">&gt;&gt;&gt;&gt;<br class="">&gt;&gt;&gt;&gt;&gt; Great proposal. I want to second that areSame may mislead user to<br class="">&gt;&gt;&gt;&gt;&gt; think this is about identity.<br class="">&gt;&gt;&gt;&gt;&gt;<br class="">&gt;&gt;&gt;&gt;&gt; I like areEquivalent() but there may be better names.<br class="">&gt;&gt;&gt;&gt;<br class="">&gt;&gt;&gt;&gt; It really *is* about identity as I posted in a previous message.&nbsp; But<br class="">&gt;&gt;&gt;&gt; that doesn't change the fact that areEquivalent might be a better name.<br class="">&gt;&gt;&gt;&gt; It's one of the things we considered; it just seemed long for no real<br class="">&gt;&gt;&gt;&gt; benefit.<br class="">&gt;&gt;&gt;&gt;<br class="">&gt;&gt;&gt;<br class="">&gt;&gt;&gt; If the addresses of the arguments aren’t being used, then we don’t consider<br class="">&gt;&gt;&gt; them part of their *identity*. I can follow this logic. My fear is most users<br class="">&gt;&gt;&gt; won’t make this leap on their own and get the same initial impression as I did.<br class="">&gt;&gt;&gt; It's entirely possible this fear is unfounded. Some educated bikesheding<br class="">&gt;&gt;&gt; wouldn't hurt here IMO :)<br class="">&gt;&gt;<br class="">&gt;&gt; Well, it's still a very real question whether we ought to have the<br class="">&gt;&gt; additional API surface implied by areSame, or wether we should collapse<br class="">&gt;&gt; it with ===.<br class="">&gt;&gt;<br class="">&gt;<br class="">&gt; To spell this out (because I had to think about it for a second): === will be derived from<br class="">&gt; &lt;=&gt;,<br class="">&gt; but also becomes default implementation for ==, which remains open for<br class="">&gt; customization.<br class=""><br class=""></span>I was imagining roughly this (untested):<br class=""><br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>/// Two references are identical if they refer to the same<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>/// instance.<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>///<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>/// - Note: Classes with a more-refined notion of “identical”<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>///&nbsp; &nbsp;should conform to `Identifiable` and implement `===`.<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>func ===(lhs: AnyObject, rhs: AnyObject) -&gt; Bool {<br class="">&nbsp; &nbsp;<span class="Apple-converted-space">&nbsp;</span>ObjectIdentifier(lhs) == ObjectIdentifier(rhs)<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>}<br class=""><br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>/// Supports testing that two values of `Self` are identical<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>///<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>/// If `a` and `b` are of type `Self`, `a === b` means that<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>/// `a` and `b` are interchangeable in most code.&nbsp; A conforming<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>/// type can document that specific observable characteristics<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>/// (such as the `capacity` of an `Array`) are inessential and<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>/// thus not to be considered as part of the interchangeability<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>/// guarantee.<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>///<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>/// - Requires: `===` induces an equivalence relation over<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>///&nbsp; &nbsp;instances.<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>/// - Note: conforming types will gain an `==` operator that<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>///&nbsp; &nbsp;forwards to `===`.<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>/// - Note: Types that require domain-specific `==`<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>///&nbsp; &nbsp;implementations with different semantics (e.g. floating<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>///&nbsp; &nbsp;point) should define a more-specific overload of `==`,<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>///&nbsp; &nbsp;which will be used in contexts where the static type is<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>///&nbsp; &nbsp;known to the compiler.<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>/// - Note: Generic code should usually use `==` to compare<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>///&nbsp; &nbsp;conforming instances; that will always dispatch to `===`<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>///&nbsp; &nbsp;and will be unaffected by more specific overloads of<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>///&nbsp; &nbsp;`==`.<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>protocol Identifiable { // née Equatable name is negotiable<br class="">&nbsp; &nbsp;<span class="Apple-converted-space">&nbsp;</span>func ===(_: Self, _: aSelf) -&gt; Bool<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>}<br class=""><br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>/// Default definition of `==` for Identifiable types.<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>func ==&lt;T: Identifiable&gt;(lhs: T, rhs: T) -&gt; Bool {<br class="">&nbsp; &nbsp;<span class="Apple-converted-space">&nbsp;</span>return lhs === rhs<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>}<br class=""><br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>/// Conforming types have a default total ordering.<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>///<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>/// If `a` and `b` are of type `Self`, `a &lt;=&gt; b` means that<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>/// `a` and `b` are interchangeable in most code.&nbsp; A conforming<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>/// type can document that specific observable characteristics<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>/// (such as the `capacity` of an `Array`) are inessential and<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>/// thus not to be considered as part of the interchangeability<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>/// guarantee.<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>///<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>/// - Requires: `&lt;=&gt;` induces a total ordering over<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>///&nbsp; &nbsp;instances.<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>/// - Requires: the semantics of `&lt;=&gt;` are&nbsp; consistent with<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>///&nbsp; &nbsp;those of `===`.&nbsp; That is, `(a &lt;=&gt; b) == .equivalent`<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>///&nbsp; &nbsp;iff `a === b`.<br class=""></blockquote><div class=""><br class=""></div><div class="">For floating point, I'd hope that `a === b` if `(a &lt;=&gt; b) == .same` *but not iff*. This is to satisfy IEEE 754: "Comparisons shall ignore the sign of zero (so +0 = −0)”.</div></div></div></div></div></blockquote><div><br class=""></div><div>The point of this design is that `===` means identity and that `.same ` also means identity.</div><div><br class=""></div><div>Since this is new territory I suppose we get to decide what identity means for floating point. &nbsp;Should +0 and -0 have the same identity or not? &nbsp;I’ll leave the answer to folks more knowledgable about numerics than I.</div><br class=""><blockquote type="cite" class=""><div class=""><div dir="ltr" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: 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=""><div class="gmail_extra"><div class="gmail_quote"><div class="">&nbsp;</div><blockquote class="gmail_quote" style="margin: 0px 0px 0px 0.8ex; border-left-width: 1px; border-left-color: rgb(204, 204, 204); border-left-style: solid; padding-left: 1ex;">&nbsp;<span class="Apple-converted-space">&nbsp;</span>/// - Note: conforming types will gain `&lt;`, `&lt;=`, `&gt;`, and `&gt;=`<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>///&nbsp; &nbsp;operators defined in terms of `&lt;=&gt;`.<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>/// - Note: Types that require domain-specific `&lt;`, etc.<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>///&nbsp; &nbsp;implementations with different semantics (e.g. floating<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>///&nbsp; &nbsp;point) should define more-specific overloads of those<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>///&nbsp; &nbsp;operators, which will be used in contexts where the<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>///&nbsp; &nbsp;static type is known to the compiler.<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>/// - Note: Generic code can freely use `&lt;=&gt;` or the traditional<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>///&nbsp; &nbsp;comparison operators to compare conforming instances;<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>///&nbsp; &nbsp;the result will always be supplied by `&lt;=&gt;`<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>///&nbsp; &nbsp;and will be unaffected by more specific overloads of<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>///&nbsp; &nbsp;the other operators.<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>protocol Comparable : Identifiable {<br class="">&nbsp; &nbsp;<span class="Apple-converted-space">&nbsp;</span>func &lt;=&gt; (lhs: Self, rhs: Self) -&gt; Ordering<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>}<br class=""><br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>/// Default implementations of `&lt;`, `&lt;=`, `&gt;`, and `&gt;=`.<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>extension Comparable {<br class="">&nbsp; &nbsp;<span class="Apple-converted-space">&nbsp;</span>static func &lt;(lhs: Self, rhs: Self) -&gt; Bool {<br class="">&nbsp; &nbsp; &nbsp;<span class="Apple-converted-space">&nbsp;</span>return (lhs &lt;=&gt; rhs) == .ascending<br class="">&nbsp; &nbsp;<span class="Apple-converted-space">&nbsp;</span>}<br class="">&nbsp; &nbsp;<span class="Apple-converted-space">&nbsp;</span>static func &lt;=(lhs: Self, rhs: Self) -&gt; Bool {<br class="">&nbsp; &nbsp; &nbsp;<span class="Apple-converted-space">&nbsp;</span>return (rhs &lt;=&gt; lhs) != .ascending<br class="">&nbsp; &nbsp;<span class="Apple-converted-space">&nbsp;</span>}<br class="">&nbsp; &nbsp;<span class="Apple-converted-space">&nbsp;</span>static func &gt;(lhs: Self, rhs: Self) -&gt; Bool {<br class="">&nbsp; &nbsp; &nbsp;<span class="Apple-converted-space">&nbsp;</span>return (lhs &lt;=&gt; rhs) == .descending<br class="">&nbsp; &nbsp;<span class="Apple-converted-space">&nbsp;</span>}<br class="">&nbsp; &nbsp;<span class="Apple-converted-space">&nbsp;</span>static func &gt;=(lhs: Self, rhs: Self) -&gt; Bool {<br class="">&nbsp; &nbsp; &nbsp;<span class="Apple-converted-space">&nbsp;</span>return (rhs &lt;=&gt; lhs) != .descending<br class=""><div class=""><div class="gmail-h5">&nbsp; &nbsp;<span class="Apple-converted-space">&nbsp;</span>}<br class="">&nbsp;<span class="Apple-converted-space">&nbsp;</span>}<br class=""><br class="">&gt; I like this idea. If we keep === as a separate thing, now users have 3 “opportunities” to define<br class="">&gt; equality. The must be few, if any, use cases for this.<br class="">&gt;<br class="">&gt; Would love to see if anyone on the list can give us an example. Otherwise we should make<br class="">&gt; areSame === again™!<br class="">&gt;<br class="">&gt;&gt;&gt;<br class="">&gt;&gt;&gt;&gt;&gt; Daniel Duan<br class="">&gt;&gt;&gt;&gt;&gt; Sent from my iPhone<br class="">&gt;&gt;&gt;&gt;&gt;<br class="">&gt;&gt;&gt;&gt;&gt;&gt; On Jul 21, 2016, at 6:32 PM, Robert Widmann via swift-evolution<br class="">&gt;&gt;&gt;&gt;&gt;&gt; &lt;<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a>&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;&gt; On Jul 21, 2016, at 6:19 PM, Xiaodi Wu &lt;<a href="mailto:xiaodi.wu@gmail.com" class="">xiaodi.wu@gmail.com</a>&gt; wrote:<br class="">&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br class="">&gt;&gt;&gt;&gt;&gt;&gt;&gt; This is nice. Is `areSame()` being proposed because static `==` is<br class="">&gt;&gt;&gt;&gt;&gt;&gt;&gt; the status quo and you're trying to make the point that `==` in the<br class="">&gt;&gt;&gt;&gt;&gt;&gt;&gt; future need not guarantee the same semantics?<br class="">&gt;&gt;&gt;&gt;&gt;&gt;<br class="">&gt;&gt;&gt;&gt;&gt;&gt; Yep!&nbsp; Equivalence and equality are strictly very different things.<br class="">&gt;&gt;&gt;&gt;&gt;&gt;<br class="">&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br class="">&gt;&gt;&gt;&gt;&gt;&gt;&gt; Nit: I think the more common term in stdlib would be<br class="">&gt;&gt;&gt;&gt;&gt;&gt;&gt; `areEquivalent()`. Do you think `same` in that context (independent<br class="">&gt;&gt;&gt;&gt;&gt;&gt;&gt; of the word "ordering") might erroneously suggest identity?<br class="">&gt;&gt;&gt;&gt;&gt;&gt;<br class="">&gt;&gt;&gt;&gt;&gt;&gt; There is room for improvement here.&nbsp; Keep ‘em coming.<br class="">&gt;&gt;&gt;&gt;&gt;&gt;<br class="">&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br class="">&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br class="">&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; On Thu, Jul 21, 2016 at 8:11 PM, Robert Widmann via<br class="">&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; swift-evolution<br class="">&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; &lt;<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a>&gt; wrote:<br class="">&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; Hello Swift Community,<br class="">&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br class="">&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; Harlan Haskins, Jaden Geller, and I have been working on a<br class="">&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; proposal to clean up the semantics of ordering relations in the<br class="">&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; standard library.&nbsp; We have a draft that you can get as a gist.<br class="">&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; Any feedback you might have about this proposal helps - though<br class="">&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; please keeps your comments on Swift-Evolution and not on the gist.<br class="">&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br class="">&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; Cheers,<br class="">&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br class="">&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; ~Robert Widmann<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;<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; _______________________________________________<br class="">&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; swift-evolution mailing list<br class="">&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;<span class="Apple-converted-space">&nbsp;</span><a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a><br class="">&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;<span class="Apple-converted-space">&nbsp;</span><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;&gt;&gt;&gt;&gt;<br class="">&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br class="">&gt;&gt;&gt;&gt;&gt;&gt;<br class="">&gt;&gt;&gt;&gt;&gt;&gt; _______________________________________________<br class="">&gt;&gt;&gt;&gt;&gt;&gt; swift-evolution mailing list<br class="">&gt;&gt;&gt;&gt;&gt;&gt;<span class="Apple-converted-space">&nbsp;</span><a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a><br class="">&gt;&gt;&gt;&gt;&gt;&gt;<span class="Apple-converted-space">&nbsp;</span><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;&gt; _______________________________________________<br class="">&gt;&gt;&gt;&gt;&gt; swift-evolution mailing list<br class="">&gt;&gt;&gt;&gt;&gt;<span class="Apple-converted-space">&nbsp;</span><a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a><br class="">&gt;&gt;&gt;&gt;&gt;<span class="Apple-converted-space">&nbsp;</span><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;&gt;<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; _______________________________________________<br class="">&gt;&gt;&gt;&gt; swift-evolution mailing list<br class="">&gt;&gt;&gt;&gt;<span class="Apple-converted-space">&nbsp;</span><a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a><br class=""></div></div>&gt;&gt;&gt;&gt; &lt;mailto:<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a><span class="Apple-converted-space">&nbsp;</span>&lt;mailto:<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a>&gt;&gt;<br class=""><span class="gmail-">&gt;&gt;&gt;&gt;<span class="Apple-converted-space">&nbsp;</span><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;&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><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;&gt;<br class="">&gt;&gt;&gt; _______________________________________________<br class="">&gt;&gt;&gt; swift-evolution mailing list<br class=""></span>&gt;&gt;&gt;<span class="Apple-converted-space">&nbsp;</span><a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a><span class="Apple-converted-space">&nbsp;</span>&lt;mailto:<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a>&gt;<br class=""><span class="gmail-im gmail-HOEnZb">&gt;&gt;&gt;<span class="Apple-converted-space">&nbsp;</span><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;&gt;<br class="">&gt;&gt;<br class="">&gt;&gt; --<br class="">&gt;&gt; Dave<br class="">&gt;&gt;<br class="">&gt;&gt; _______________________________________________<br class="">&gt;&gt; swift-evolution mailing list<br class="">&gt;&gt;<span class="Apple-converted-space">&nbsp;</span><a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a><span class="Apple-converted-space">&nbsp;</span>&lt;mailto:<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a>&gt;<br class="">&gt;&gt;<span class="Apple-converted-space">&nbsp;</span><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; &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=""><br class=""></span><div class="gmail-HOEnZb"><div class="gmail-h5">--<br class="">Dave<br class="">_______________________________________________<br class="">swift-evolution mailing list<br class=""><a href="mailto:swift-evolution@swift.org" 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><span style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: 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;" class="">_______________________________________________</span><br style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: 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=""><span style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: 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;" class="">swift-evolution mailing list</span><br style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: 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=""><a href="mailto:swift-evolution@swift.org" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: 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="">swift-evolution@swift.org</a><br style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: 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=""><a href="https://lists.swift.org/mailman/listinfo/swift-evolution" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: 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="">https://lists.swift.org/mailman/listinfo/swift-evolution</a></div></blockquote></div><br class=""></body></html>