<div dir="ltr">On Fri, Jul 22, 2016 at 3:54 PM, Dave Abrahams <span dir="ltr">&lt;<a href="mailto:dabrahams@apple.com" target="_blank">dabrahams@apple.com</a>&gt;</span> wrote:<br><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class=""><br>
on Fri Jul 22 2016, Xiaodi Wu &lt;<a href="http://xiaodi.wu-AT-gmail.com" rel="noreferrer" target="_blank">xiaodi.wu-AT-gmail.com</a>&gt; wrote:<br>
<br>
&gt; On Fri, Jul 22, 2016 at 1:05 PM, Dave Abrahams via swift-evolution &lt;<br>
&gt; <a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt; wrote:<br>
&gt;<br>
&gt;&gt;<br>
&gt;&gt; on Thu Jul 21 2016, Duan &lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; &gt; Great proposal. I want to second that areSame may mislead user to<br>
&gt;&gt; &gt; think this is about identity.<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; I like areEquivalent() but there may be better names.<br>
&gt;&gt;<br>
&gt;&gt; It really *is* about identity as I posted in a previous message.<br>
&gt;<br>
&gt; Correct me if I&#39;m wrong:<br>
<br>
</span>Not to put too fine a point on it, but... ;-)<br></blockquote><div><br></div><div>Please do :) This discussion has been very edifying (for me), so thank you for taking the time.</div><div><br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<span class=""><br>
&gt; Identity is an equality relation, and `==` is about just that.<br>
&gt; By contrast, `areSame()` is to define an *equivalence* relation<br>
<br>
</span>The phrase “equality relation” has no commonly-understood formal or<br>
informal meaning AFAIK.<br>
<br>
“Identity” is a slightly informal term IIUC, but for any<br>
commonly-understood meaning of that word, the “is identical to” is<br>
*always* an equivalence relation.<br>
<span class=""><br>
&gt; through which, by default, `==` is to be dispatched.<br>
&gt; Since this design specifically<br>
&gt; contemplates scenarios in which certain Equatables will override `==` *not*<br>
&gt; to dispatch through `areSame()`,<br>
<br>
</span>[Since `==` wouldn&#39;t be a protocol requirement (except in FloatingPoint),<br>
it&#39;s technically shadowing rather than overriding in the general case.<br>
I imagine this detail doesn&#39;t matter to your point]<br>
<span class=""><br>
&gt; the latter function evaluates only *equivalence* with respect to an<br>
&gt; arbitrary equivalence relation, not identity.<br>
<br>
</span>Saying that areSame is just any old arbitrary equivalence relation,<br>
would complicate the system in undesirable ways.</blockquote><div><br></div><div>Ah, well, there goes my dream of using `{ return true }` as my equivalence relation... :P</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"> It&#39;s<br>
a bit subtle but I&#39;ll try to walk you through the reasoning:<br>
<br>
1. We had a choice about whether to document that Comparable requires<br>
   that &lt;=&gt; be a total order or a strict weak order [A strict weak order<br>
   is a total order over equivalence classes of elements that aren&#39;t<br>
   ordered with respect to other members of the same class].  Either one<br>
   will work for the standard algorithms.<br>
<br>
2. Because the concept of total order is more accessible and requiring<br>
   &lt;=&gt; to be a total order doesn&#39;t seem to reduce expressivity, we<br>
   decided on a total order.<br>
<br>
3. The only difference between these two orderings is that in a total<br>
   order the equivalence classes have only a single element, **which<br>
   means that the equivalence relation in play has to, in some sense,<br>
   tell you whether two things are identical**.  This all comes down to<br>
   how you measure “are a and b the same element?”<br>
<br>
The alternative is to say that &lt;=&gt; is just a strict weak ordering and<br>
areSame is just any arbitrary equivalence relation, but that really<br>
complicates everything (not just the definition of Comparable).  For<br>
example, you can&#39;t document `a.firstIndex(of: b)` as the first index where<br>
`b` appears in `a`; you have to say it&#39;s the first index of an element<br>
that satisfies `{ Element.areSame($0, b) }`.<br></blockquote><div><br></div><div>I hadn&#39;t considered how closely yoked Equatable and Comparable have to be. You can&#39;t have Comparable refine Equatable such that `Comparable.areSame(_:)` has stricter semantic requirements than plain Equatable?</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">
&gt; Put another way, the future `Equatable` is a contract that conforming<br>
&gt; types will supply a definition of equality *and* an equivalence<br>
&gt; relation, where the former by default is dispatched through the<br>
&gt; latter; but it is specifically envisioned that the two may be<br>
&gt; separated in domain-specific scenarios.<br>
<br>
</span>That is correct.  However, the equivalence relation in question still<br>
is, in some very real sense, an identity check.<br>
<div class="HOEnZb"><div class="h5"><br>
&gt;&gt; But<br>
&gt;&gt; that doesn&#39;t change the fact that areEquivalent might be a better name.<br>
&gt;&gt; It&#39;s one of the things we considered; it just seemed long for no real<br>
&gt;&gt; benefit.<br>
&gt;&gt;<br>
&gt;&gt; &gt; Daniel Duan<br>
&gt;&gt; &gt; Sent from my iPhone<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; On Jul 21, 2016, at 6:32 PM, Robert Widmann via swift-evolution<br>
&gt;&gt; &gt;&gt; &lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt; wrote:<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt; On Jul 21, 2016, at 6:19 PM, Xiaodi Wu &lt;<a href="mailto:xiaodi.wu@gmail.com">xiaodi.wu@gmail.com</a>&gt; wrote:<br>
&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt; This is nice. Is `areSame()` being proposed because static `==` is<br>
&gt;&gt; &gt;&gt;&gt; the status quo and you&#39;re trying to make the point that `==` in the<br>
&gt;&gt; &gt;&gt;&gt; future need not guarantee the same semantics?<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; Yep!  Equivalence and equality are strictly very different things.<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt; Nit: I think the more common term in stdlib would be<br>
&gt;&gt; &gt;&gt;&gt; `areEquivalent()`. Do you think `same` in that context (independent<br>
&gt;&gt; &gt;&gt;&gt; of the word &quot;ordering&quot;) might erroneously suggest identity?<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; There is room for improvement here.  Keep ‘em coming.<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt; On Thu, Jul 21, 2016 at 8:11 PM, Robert Widmann via<br>
&gt;&gt; &gt;&gt;&gt;&gt; swift-evolution<br>
&gt;&gt; &gt;&gt;&gt;&gt; &lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt; wrote:<br>
&gt;&gt; &gt;&gt;&gt;&gt; Hello Swift Community,<br>
&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt; Harlan Haskins, Jaden Geller, and I have been working on a<br>
&gt;&gt; &gt;&gt;&gt;&gt; proposal to clean up the semantics of ordering relations in the<br>
&gt;&gt; &gt;&gt;&gt;&gt; standard library.  We have a draft that you can get as a gist.<br>
&gt;&gt; &gt;&gt;&gt;&gt; Any feedback you might have about this proposal helps - though<br>
&gt;&gt; &gt;&gt;&gt;&gt; please keeps your comments on Swift-Evolution and not on the gist.<br>
&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt; Cheers,<br>
&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt; ~Robert Widmann<br>
&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt; _______________________________________________<br>
&gt;&gt; &gt;&gt;&gt;&gt; swift-evolution mailing list<br>
&gt;&gt; &gt;&gt;&gt;&gt; <a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a><br>
&gt;&gt; &gt;&gt;&gt;&gt; <a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br>
&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; _______________________________________________<br>
&gt;&gt; &gt;&gt; swift-evolution mailing list<br>
&gt;&gt; &gt;&gt; <a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a><br>
&gt;&gt; &gt;&gt; <a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br>
&gt;&gt; &gt; _______________________________________________<br>
&gt;&gt; &gt; swift-evolution mailing list<br>
&gt;&gt; &gt; <a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a><br>
&gt;&gt; &gt; <a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br>
&gt;&gt; &gt;<br>
&gt;&gt;<br>
&gt;&gt; --<br>
&gt;&gt; Dave<br>
&gt;&gt;<br>
&gt;&gt; _______________________________________________<br>
&gt;&gt; swift-evolution mailing list<br>
&gt;&gt; <a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a><br>
&gt;&gt; <a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br>
&gt;&gt;<br>
<br>
</div></div><span class="HOEnZb"><font color="#888888">--<br>
Dave<br>
</font></span></blockquote></div><br></div></div>