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