<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;" class="">Using the term “lexicographically” implies to me that the Element type must conform to Comparable, as would be required for a total order. &nbsp;The Sequence method you mention, lexicographicallyPrecedes(_:), does have this constraint, whereas the method in question for elementsEqual(_:) / lexicographicallyEquals(_:) only has the constraint that the Element is Equatable. &nbsp;As an example, an array of simple enums has no default lexicographical ordering but is still able to use this method because enums (without associated values) are Equatable by default:<div class=""><br class=""></div><div class=""><div style="margin: 0px; font-stretch: normal; line-height: normal; font-family: Menlo; background-color: rgb(255, 255, 255);" class=""><span style="color: rgb(186, 45, 162);" class=""><b class="">enum</b></span>&nbsp;Foo {</div><div style="margin: 0px; font-stretch: normal; line-height: normal; font-family: Menlo; background-color: rgb(255, 255, 255);" class="">&nbsp; &nbsp;&nbsp;<span style="color: rgb(186, 45, 162);" class=""><b class="">case</b></span>&nbsp;bar</div><div style="margin: 0px; font-stretch: normal; line-height: normal; font-family: Menlo; background-color: rgb(255, 255, 255);" class="">&nbsp; &nbsp;&nbsp;<span style="color: rgb(186, 45, 162);" class=""><b class="">case</b></span>&nbsp;baz</div><div style="margin: 0px; font-stretch: normal; line-height: normal; font-family: Menlo; background-color: rgb(255, 255, 255);" class="">}</div><div style="margin: 0px; font-stretch: normal; line-height: normal; background-color: rgb(255, 255, 255); min-height: 14px;" class=""><br class=""></div><div style="margin: 0px; font-stretch: normal; line-height: normal; font-family: Menlo; background-color: rgb(255, 255, 255);" class=""><span style="color: rgb(186, 45, 162);" class=""><b class="">let</b></span>&nbsp;f1 = [<span style="color: rgb(79, 129, 135);" class="">Foo</span>.<span style="color: rgb(49, 89, 93);" class="">bar</span>,&nbsp;<span style="color: rgb(79, 129, 135);" class="">Foo</span>.<span style="color: rgb(49, 89, 93);" class="">baz</span>]</div><div style="margin: 0px; font-stretch: normal; line-height: normal; font-family: Menlo; background-color: rgb(255, 255, 255);" class=""><span style="color: rgb(186, 45, 162);" class=""><b class="">let</b></span>&nbsp;f2 = [<span style="color: rgb(79, 129, 135);" class="">Foo</span>.<span style="color: rgb(49, 89, 93);" class="">baz</span>,&nbsp;<span style="color: rgb(79, 129, 135);" class="">Foo</span>.<span style="color: rgb(49, 89, 93);" class="">bar</span>]</div><div style="margin: 0px; font-stretch: normal; line-height: normal; background-color: rgb(255, 255, 255); min-height: 14px;" class=""><br class=""></div><div style="margin: 0px; font-stretch: normal; line-height: normal; font-family: Menlo; color: rgb(62, 30, 129); background-color: rgb(255, 255, 255);" class=""><span style="color: rgb(79, 129, 135);" class="">f1</span><span style="color: rgb(0, 0, 0);" class="">.</span>elementsEqual<span style="color: rgb(0, 0, 0);" class="">(</span><span style="color: rgb(79, 129, 135);" class="">f2</span><span style="color: rgb(0, 0, 0);" class="">) //false</span></div><div style="margin: 0px; font-stretch: normal; line-height: normal; font-family: Menlo; color: rgb(62, 30, 129); background-color: rgb(255, 255, 255);" class=""><div style="margin: 0px; font-stretch: normal; line-height: normal;" class=""><span style="color: rgb(79, 129, 135);" class="">f1</span><span style="color: rgb(0, 0, 0);" class="">.</span>elementsEqual<span style="color: rgb(0, 0, 0);" class="">(</span><span style="color: rgb(79, 129, 135);" class="">f2</span><span style="color: rgb(0, 0, 0);" class="">.</span>reversed<span style="color: rgb(0, 0, 0);" class="">()) //true</span></div></div><div class=""><br class=""></div><div class="">I also share Jonathan’s concerns that some programmers may misinterpret [lexicographically][Equals] to mean [sorted in lexicographical order][compare sequence equality], which is not what the method in question does.</div><div class=""><br class=""></div><div class="">Xiaodi, I think you are right that Sequence.sequentiallyEquals is to close to "==" to use, but I think we have to find something better here.</div><div class=""><br class=""></div><div class="">I’ll recommend that we use the name&nbsp;<i class="">Sequence.iterativelyEquals(_:)</i>&nbsp;since this describes the body of the method concisely. &nbsp;A rough abbreviation of this algorithm is:</div><div class=""><br class=""></div><div class="">1. Iterate over elements in two sequences</div><div class=""><span class="Apple-tab-span" style="white-space: pre;">        </span>a. Compare elements for equality</div><div class=""><br class=""></div><div class="">“iterativelyEquals" concisely describes this.</div></div><div><br class=""><blockquote type="cite" class=""><div class="">On Oct 12, 2017, at 6:24 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" class=""><h1 class="">Rename <code class="">Sequence.elementsEqual</code></h1>
<ul class=""><li class="">Proposal: <a href="https://gist.github.com/xwu/NNNN-rename-elements-equal.md" class="">SE-NNNN</a></li><li class="">Authors: <a href="https://github.com/xwu" class="">Xiaodi Wu</a></li><li class="">Review Manager: TBD</li><li class="">Status: <strong class="">Awaiting review</strong></li></ul><h2 class=""><a href="https://gist.github.com/xwu/1f0ef4e18a7f321f22ca65a2f56772f6#introduction" class="gmail-anchor" id="gmail-user-content-introduction"></a>Introduction</h2><p class="">The current behavior of <code class="">Sequence.elementsEqual</code> is 
potentially confusing to users given its name. Having surveyed the 
alternative solutions to this problem, it is proposed that the method be
 renamed to <code class="">Sequence.lexicographicallyEquals</code>.</p>

<h2 class=""><a href="https://gist.github.com/xwu/1f0ef4e18a7f321f22ca65a2f56772f6#motivation" class="gmail-anchor" id="gmail-user-content-motivation"></a>Motivation</h2><p class=""><a href="https://twitter.com/olebegemann/status/916291785185529857" class="">As outlined by Ole Begemann</a>, use of <code class="">Sequence.elementsEqual(_:)</code> can lead to surprising results if the sequences compared are unordered:</p>
<div class="gmail-highlight gmail-highlight-source-swift"><pre class=""><span class="gmail-pl-k">var</span> set1<span class="gmail-pl-k">:</span> <span class="gmail-pl-c1">Set</span><span class="gmail-pl-k">&lt;</span><span class="gmail-pl-c1">Int</span><span class="gmail-pl-k">&gt;</span> <span class="gmail-pl-k">=</span> <span class="gmail-pl-c1">Set</span>(<span class="gmail-pl-c1">1</span><span class="gmail-pl-k">...</span><span class="gmail-pl-c1">5</span>)
<span class="gmail-pl-k">var</span> set2<span class="gmail-pl-k">:</span> <span class="gmail-pl-c1">Set</span><span class="gmail-pl-k">&lt;</span><span class="gmail-pl-c1">Int</span><span class="gmail-pl-k">&gt;</span> <span class="gmail-pl-k">=</span> <span class="gmail-pl-c1">Set</span>((<span class="gmail-pl-c1">1</span><span class="gmail-pl-k">...</span><span class="gmail-pl-c1">5</span>).<span class="gmail-pl-c1">reversed</span>())

set1 <span class="gmail-pl-k">==</span> set2 <span class="gmail-pl-c"><span class="gmail-pl-c">//</span> true</span>
<span class="gmail-pl-c"></span>set1.<span class="gmail-pl-c1">elementsEqual</span>(set2) <span class="gmail-pl-c"><span class="gmail-pl-c">//</span> false</span></pre></div><p class="">This result does reflect the <strong class="">intended and documented</strong> behavior of the <code class="">elementsEqual(_:)</code> method, which performs a <strong class="">lexicographical</strong> elementwise comparison. That is, the method first compares <code class="">set1.first</code> to <code class="">set2.first</code>, then (if the two elements compare equal) compares the next element stored internally in <code class="">set1</code> to the next element stored internally in <code class="">set2</code>, and so on.</p><p class="">In almost all circumstances where a set is compared to another set, 
or a dictionary is compared to another dictionary, users should use <code class="">==</code> instead of <code class="">elementsEqual(_:)</code>.</p>
<h2 class=""><a href="https://gist.github.com/xwu/1f0ef4e18a7f321f22ca65a2f56772f6#proposed-solution" class="gmail-anchor" id="gmail-user-content-proposed-solution"></a>Proposed solution</h2><p class="">The proposed solution is the result of an iterative process of reasoning, presented here:</p><p class="">The first and most obvious solution is to remove the <code class="">elementsEqual(_:)</code> method altogether in favor of <code class="">==</code>. This prevents its misuse. However, because <code class="">elementsEqual(_:)</code> is a generic method on <code class="">Sequence</code>, we can use it to compare an instance of <code class="">UnsafeBufferPointer&lt;Int&gt;</code> to an instance of <code class="">[Int]</code>. This is a useful and non-redundant feature which would be eliminated if the method is removed altogether.</p><p class=""><a href="https://github.com/apple/swift/pull/12318" class="">A second solution</a> is to create overloads that forbid the use of the <code class="">elementsEqual(_:)</code>
 method specifically in non-generic code. This would prevent misuse in 
non-generic code; however, it would also forbid legitimate mixed-type 
comparisons in non-generic code while failing to prevent misuse in 
generic code. The solution also creates a difference in the behavior of 
generic and non-generic code calling the same method, which is 
potentially confusing, without solving the problem completely.</p><p class="">A third solution is to dramatically overhaul the protocol hierarchy 
for Swift sequences and collections so that unordered collections no 
longer have members such as <code class="">first</code> and <code class="">elementsEqual(_:)</code>.
 However, this would be a colossal and source-breaking undertaking, and 
it is unlikely to be satisfactory in addressing all the axes of 
differences among sequence and collection types:</p>
<ul class=""><li class="">Finite versus infinite</li><li class="">Single-pass versus multi-pass</li><li class="">Ordered versus unordered</li><li class="">Lazy versus eager</li><li class="">Forward/bidirectional/random-access</li></ul><p class="">A fourth solution is proposed here. It is predicated on the following observation:</p><p class=""><em class="">Another method similar to <code class="">elementsEqual(_:)</code> already exists on <code class="">Sequence</code> named <code class="">lexicographicallyPrecedes(_:)</code>. Like <code class="">first</code>, <code class="">elementsEqual(_:)</code>, <code class="">drop(while:)</code>,
 and others, it relies on the internal order of elements in a manner 
that is not completely suitable for an unordered collection. However, 
like <code class="">first</code> and unlike <code class="">elementsEqual(_:)</code>, this fact is called out in the name of the method; unsurprisingly, like <code class="">first</code> and unlike <code class="">elementsEqual(_:)</code>, there is no evidence that <code class="">lexicographicallyPrecedes(_:)</code> has been a pitfall for users.</em></p><p class="">This observation suggests that a major reason for confusion over <code class="">elementsEqual(_:)</code> stems from its name. So, <strong class="">it is proposed that <code class="">elementsEqual(_:)</code> should be renamed to <code class="">lexicographicallyEquals(_:)</code></strong>.
 The function will remain somewhat of a poor fit for unordered 
collections, but no more so than many other methods that cannot 
trivially be removed from the API of unordered collections (as discussed
 above). The key is that, with such a renaming, the behavior of this 
method will no longer be confusing.</p>
<h2 class=""><a href="https://gist.github.com/xwu/1f0ef4e18a7f321f22ca65a2f56772f6#detailed-design" class="gmail-anchor" id="gmail-user-content-detailed-design"></a>Detailed design</h2>
<div class="gmail-highlight gmail-highlight-source-swift"><pre class=""><span class="gmail-pl-k">extension</span> <span class="gmail-pl-en"><span class="gmail-pl-c1">Sequence</span></span> <span class="gmail-pl-k">where</span> <span class="gmail-pl-c1">Element</span> <span class="gmail-pl-k">:</span> <span class="gmail-pl-e"><span class="gmail-pl-c1">Equatable</span></span> {
  <span class="gmail-pl-k">@available</span>(<span class="gmail-pl-k">*</span>, <span class="gmail-pl-k">deprecated</span>, <span class="gmail-pl-k">message</span>: <span class="gmail-pl-s"><span class="gmail-pl-pds">"</span>Use '==' if possible to compare two sequences of the same type, or use 'lexicographicallyEquals' to compare two ordered sequences.<span class="gmail-pl-pds">"</span></span>)
  <span class="gmail-pl-k">public</span> <span class="gmail-pl-k">func</span> <span class="gmail-pl-en">elementsEqual</span>&lt;<span class="gmail-pl-c1">Other</span> : <span class="gmail-pl-e"><span class="gmail-pl-c1">Sequence</span></span>&gt;(
    <span class="gmail-pl-en">_</span> <span class="gmail-pl-smi">other</span>: Other
  ) <span class="gmail-pl-k">-&gt;</span> <span class="gmail-pl-c1">Bool</span> <span class="gmail-pl-k">where</span> Other.<span class="gmail-pl-c1">Element</span> <span class="gmail-pl-k">==</span> <span class="gmail-pl-c1">Element</span> {
    <span class="gmail-pl-k">return</span> <span class="gmail-pl-c1">lexicographicallyEquals</span>(other)
  }
  
  <span class="gmail-pl-k">public</span> <span class="gmail-pl-k">func</span> <span class="gmail-pl-en">lexicographicallyEquals</span>&lt;<span class="gmail-pl-c1">Other</span> : <span class="gmail-pl-e"><span class="gmail-pl-c1">Sequence</span></span>&gt;(
    <span class="gmail-pl-en">_</span> <span class="gmail-pl-smi">other</span>: Other
  ) <span class="gmail-pl-k">-&gt;</span> <span class="gmail-pl-c1">Bool</span> <span class="gmail-pl-k">where</span> Other.<span class="gmail-pl-c1">Element</span> <span class="gmail-pl-k">==</span> <span class="gmail-pl-c1">Element</span> {
    <span class="gmail-pl-c"><span class="gmail-pl-c">//</span> The body of this method is unchanged.</span>
<span class="gmail-pl-c"></span>    <span class="gmail-pl-k">var</span> iter1 <span class="gmail-pl-k">=</span> <span class="gmail-pl-c1">self</span>.<span class="gmail-pl-c1">makeIterator</span>()
    <span class="gmail-pl-k">var</span> iter2 <span class="gmail-pl-k">=</span> other.<span class="gmail-pl-c1">makeIterator</span>()
    <span class="gmail-pl-k">while</span> <span class="gmail-pl-c1">true</span> {
      <span class="gmail-pl-k">switch</span> (iter1.<span class="gmail-pl-c1">next</span>(), iter2.<span class="gmail-pl-c1">next</span>()) {
      <span class="gmail-pl-k">case</span> <span class="gmail-pl-k">let</span> (e1<span class="gmail-pl-k">?</span>, e2<span class="gmail-pl-k">?</span>)<span class="gmail-pl-k">:</span>
        <span class="gmail-pl-k">if</span> e1 <span class="gmail-pl-k">!=</span> e2 { <span class="gmail-pl-k">return</span> <span class="gmail-pl-c1">false</span> }
      <span class="gmail-pl-k">case</span> (<span class="gmail-pl-c1">_</span><span class="gmail-pl-k">?</span>, <span class="gmail-pl-c1">nil</span>), (<span class="gmail-pl-c1">nil</span>, <span class="gmail-pl-c1">_</span><span class="gmail-pl-k">?</span>)<span class="gmail-pl-k">:</span>
        <span class="gmail-pl-k">return</span> <span class="gmail-pl-c1">false</span>
      <span class="gmail-pl-k">case</span> (<span class="gmail-pl-c1">nil</span>, <span class="gmail-pl-c1">nil</span>)<span class="gmail-pl-k">:</span>
        <span class="gmail-pl-k">return</span> <span class="gmail-pl-c1">true</span>
      }
    }
  }
}</pre></div><p class="">A parallel change will be made with respect to <code class="">elementsEqual(_:by:)</code>; that is, it will be deprecated in favor of <code class="">lexicographicallyEquals(_:by:)</code>.</p>
<h2 class=""><a href="https://gist.github.com/xwu/1f0ef4e18a7f321f22ca65a2f56772f6#source-compatibility" class="gmail-anchor" id="gmail-user-content-source-compatibility"></a>Source compatibility</h2><p class="">Existing code that uses <code class="">elementsEqual</code> will gain a deprecation warning.</p>
<h2 class=""><a href="https://gist.github.com/xwu/1f0ef4e18a7f321f22ca65a2f56772f6#effect-on-abi-stability" class="gmail-anchor" id="gmail-user-content-effect-on-abi-stability"></a>Effect on ABI stability</h2><p class="">None.</p>
<h2 class=""><a href="https://gist.github.com/xwu/1f0ef4e18a7f321f22ca65a2f56772f6#effect-on-api-resilience" class="gmail-anchor" id="gmail-user-content-effect-on-api-resilience"></a>Effect on API resilience</h2><p class="">This proposal adds new methods to the public API of <code class="">Sequence</code> and conforming types.</p>
<h2 class=""><a href="https://gist.github.com/xwu/1f0ef4e18a7f321f22ca65a2f56772f6#alternatives-considered" class="gmail-anchor" id="gmail-user-content-alternatives-considered"></a>Alternatives considered</h2><p class="">It is to be noted that <code class="">lexicographicallyPrecedes(_:by:)</code> and <code class="">elementsEqual(_:by:)</code>
 are essentially the same method, since both perform a lexicographical 
comparison using a custom predicate. However, there is not a good 
unifying name. (<code class="">lexicographicallyCompares(to:by:)</code> reads 
poorly.) Moreover, the predicate supplied is intended to have very 
different semantics, and maintaining two distinct methods may be a 
superior fit with the typical user's mental model of the intended 
behavior and may also be clearer to readers of the code. Therefore, this
 proposal does not seek to unify the two methods; instead, <code class="">elementsEqual(_:by:)</code> will be renamed <code class="">lexicographicallyEquals(_:by:)</code> as detailed above.</p></div>
_______________________________________________<br class="">swift-evolution mailing list<br class=""><a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a><br class="">https://lists.swift.org/mailman/listinfo/swift-evolution<br class=""></div></blockquote></div><br class=""></body></html>