<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Wed, Jul 20, 2016 at 6:32 PM, Ted F.A. van Gaalen 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><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word">Hi,<div><br></div><div>Mathematical correct or not: </div><div><br></div><div>in case of </div><div>     s1.hasPrefix(s2)</div><div>         (or any other containment test method) </div><div><br></div><div>s1 and s2 are just plain simple instances of String,</div><div>nothing more nothing less. </div><div><br></div><div>Which is interpreted by me as: </div><div>“test if String s1 starts with String s2”</div><div><br></div></div></blockquote><div><br></div><div>…which means, “Do the first n characters of s1 match s2, where n is the length of s2?”</div><div><br></div><div>When s2 is the empty string, n is 0.</div><div><br></div><div>What are the first 0 characters of s1? Clearly the empty string, since that is the only string with 0 characters.</div><div><br></div><div>Do the first 0 characters of s1 match s2? Well they are both the empty string, and &quot;&quot;==&quot;&quot; is true, so…</div><div><br></div><div>That would be a resounding “Yes!”</div><div><br></div><div>Nevin</div><div><br></div><div><br></div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word"><div></div><div>which, to me,  implies that one will never find an occurrence</div><div>of an empty string within another string,</div><div>for the very simple reason that an empty string</div><div>does not exist within another string. **</div><div>Ergo: “false” is the right evaluation when s2.isEmpty.</div><div><br></div><div>** In my mental model, a String is just an array of 0...n characters,</div><div>  like it is in most languages, very straightforward.</div><div><br></div><div> (returning false) This is exactly the reason why NSString does that, </div><span class=""><div>for more than 20 years, why change it?</div><div><br></div></span><div>AFAIK no one has complained about this for years, </div><div>because imho it is logically sound. </div><div><br></div><div>for a compiler this is very easy</div><div>all it has to do is to return False</div><div>when either s1 or s2 is empty.</div><div><br></div><div><br></div><div>Ted</div><div><div class="h5"><div><br></div><div><br><div><blockquote type="cite"><div>On 19.07.2016, at 23:11, Jacob Bandes-Storch &lt;<a href="mailto:jtbandes@gmail.com" target="_blank">jtbandes@gmail.com</a>&gt; wrote:</div><br><div><div dir="ltr">Not that it&#39;s needed, but another +1 from me.<div><br></div><div>a.hasPrefix(p) should be true iff there exists some string x for which p+x == a.  If p == &quot;&quot;, then x := a satisfies this, so hasPrefix should return true.</div><div class="gmail_extra"><br clear="all"><div><div data-smartmail="gmail_signature"><div dir="ltr"><div>Jacob<br></div></div></div></div>
<br><div class="gmail_quote">On Tue, Jul 19, 2016 at 1:29 PM, Jaden Geller 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><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word">Both `hasPrefix` and `hasSuffix` are analogous to the more general `hasSubset` function, which would return `true` for the empty set.<div><div><div><br><div><blockquote type="cite"><div>On Jul 19, 2016, at 12:32 PM, Bianca via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt; wrote:</div><br><div><div dir="ltr"><span style="color:rgb(33,33,33);font-family:&quot;helvetica neue&quot;,helvetica,arial,sans-serif">&gt; Empty set is a subset of all sets.</span><br style="color:rgb(33,33,33);font-family:&quot;helvetica neue&quot;,helvetica,arial,sans-serif"><br style="color:rgb(33,33,33);font-family:&quot;helvetica neue&quot;,helvetica,arial,sans-serif"><font color="#212121" face="helvetica neue, helvetica, arial, sans-serif">True but all sets certainly do not _contain_ the empty set, which is what might be confusing, as the word &quot;contains&quot; in the context of sets implies that it&#39;s a member of the set of characters that make up a String. </font><div><font color="#212121" face="helvetica neue, helvetica, arial, sans-serif"><br></font><div class="gmail_quote"><div dir="ltr">On Tue, Jul 19, 2016 at 12:23 PM Charlie Monroe via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt; wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><br>
&gt; On Jul 19, 2016, at 6:17 PM, Ted F.A. van Gaalen via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt; wrote:<br>
&gt;<br>
&gt; 1.  return “false”  seems to me logically correct, because<br>
&gt;     there is never an empty string in another string, and an empty string cannot contain another empty string, right?<br>
<br>
Empty set is a subset of all sets.<br>
<br>
Just like:<br>
<br>
let arr1: [String] = [&quot;Hello&quot;, &quot;Swift&quot;, &quot;Evolution&quot;]<br>
let arr2: [String] = []<br>
arr1.starts(with: arr2, isEquivalent: ==) // true<br>
<br>
&gt;    This has worked very conveniently for NSString in ObjC for more than 20 years, why change it?<br>
&gt;    Do you know of cases that were problematic with this convention?<br>
&gt;<br>
&gt;<br>
&gt; 2  throw a runtime error when trying to do this:<br>
&gt;    str.hasPrefix(“”)     //  also for hasSuffix,  str.contains etc.<br>
&gt;<br>
&gt; some in-line questions below.<br>
&gt;<br>
&gt; Kind Regards<br>
&gt;<br>
&gt; Ted<br>
&gt;<br>
&gt;<br>
&gt; On 19.07.2016, at 16:31, Dave Abrahams &lt;<a href="mailto:dabrahams@apple.com" target="_blank">dabrahams@apple.com</a>&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; on Tue Jul 19 2016, &quot;Ted F.A. van Gaalen&quot; &lt;<a href="http://tedvgiosdev-at-gmail.com/" target="_blank">tedvgiosdev-AT-gmail.com</a>&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt;&gt; Hi Dave<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; “true” ? am I going nuts ? :o)<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; var str = &quot;Hello, playground&quot;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; print( str.hasPrefix(&quot;”)) // case 1 : false<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; print( str.hasSuffix(&quot;”)) // case 2 : false<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; print(&quot;&quot; == “a” )          // case 3 : false<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Currently, all cases above evaluate to “false”<br>
&gt;&gt;&gt; i think that is correct,<br>
&gt;&gt;<br>
&gt;&gt; I don&#39;t know what to tell you.  It may seem intuitively correct to you,<br>
&gt;&gt; but others in the thread have laid out the reasons why it is not<br>
&gt;&gt; mathematically correct behavior.<br>
&gt; Where? I couldn’t find any.<br>
&gt;&gt; One other way of rephrasing it: to get<br>
&gt;&gt; `false` for str.hasPrefix(&quot;&quot;), you actually need special-case code in<br>
&gt;&gt; hasPrefix to check for the empty string,<br>
&gt; again, maybe it should throw a run-time error instead.<br>
&gt;<br>
&gt;<br>
&gt;&gt; and the caller may well also<br>
&gt;&gt; need special-case code to handle the fact that the result is not<br>
&gt;&gt; mathematically consistent with other cases on the continuum.<br>
&gt; In this context as “continuum” :<br>
&gt;   are you referring to  “sets” or “collections” here?<br>
&gt; what other cases?<br>
&gt;<br>
&gt;&gt; Doing<br>
&gt;&gt; things that way doesn&#39;t work in practice for real programs.<br>
&gt; please explain thank you, because I see no problems at<br>
&gt; all with the current NSString-like evaluation…<br>
&gt; I’d put an s.isEmpty() in front of it.<br>
&gt;&gt;<br>
&gt;&gt;&gt; because:<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; How can an empty string be a prefix or suffix value?<br>
&gt;&gt;&gt; as there is no empty string present in a non-empty string.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Note that if case 1 and case 2 would evaluate to “true”,<br>
&gt;&gt;&gt; it would conflict with case 3.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Can’t imagine that case 3 should in future also result in “true”<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; ??<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; -----<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Also I hope that changes to String functionality<br>
&gt;&gt;&gt; for Swift 4 are not backward breaking changes<br>
&gt;&gt;&gt; even the more for string handling, because Strings<br>
&gt;&gt;&gt; are heavily used in most apps.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; I am firmly convinced that all future releases of Swift<br>
&gt;&gt;&gt; should compile Swift 3 and higher source files without<br>
&gt;&gt;&gt; any changes 100 % flawlessly! This prevents early diminishing<br>
&gt;&gt;&gt; of Swift’s popularity, especially with those building large<br>
&gt;&gt;&gt; codebases using Swift.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; I’ve started a thread about this a week ago,<br>
&gt;&gt;&gt; however no one found this important enough to<br>
&gt;&gt;&gt; share their opinions with me yet, or were too busy with<br>
&gt;&gt;&gt; other subjects to do so.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Increasingly I have dreams, me<br>
&gt;&gt;&gt; programming complete apps in Smalltalk<br>
&gt;&gt;&gt; and then automagically generate<br>
&gt;&gt;&gt; an macOS, tvOS or iOS runtime app of it.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; (I have also dreams of this world becoming<br>
&gt;&gt;&gt; a nice and peaceful placebut that is<br>
&gt;&gt;&gt; beyond the context of this forum)<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Kind Regards<br>
&gt;&gt;&gt; TedvG<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; <a href="http://www.speyer.de/" rel="noreferrer" target="_blank">www.speyer.de</a><br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; on Mon Jul 18 2016, Kevin Nattinger &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a> &lt;mailto:<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt;&gt; wrote:<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; I agree, true is definitely the expected behavior. In particular, it<br>
&gt;&gt;&gt;&gt;&gt; seems absurd to me that `a.hasPrefix(b)` and `a.hasSuffix(b)` could be<br>
&gt;&gt;&gt;&gt;&gt; false when `a == b` is true.<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; I expect to be reworking Strings for Swift 4, and this is one of the<br>
&gt;&gt;&gt;&gt; many things we plan to address.<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;<br>
&gt;&gt;<br>
&gt;&gt; --<br>
&gt;&gt; Dave<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; swift-evolution mailing list<br>
&gt; <a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a><br>
&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>
<br>
_______________________________________________<br>
swift-evolution mailing list<br>
<a href="mailto:swift-evolution@swift.org" target="_blank">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>
</blockquote></div></div></div><div dir="ltr">-- <br></div><div data-smartmail="gmail_signature">Bianca<br><a href="http://biancatamayo.me/" target="_blank">http://biancatamayo.me</a></div>
_______________________________________________<br>swift-evolution mailing list<br><a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a><br><a href="https://lists.swift.org/mailman/listinfo/swift-evolution" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br></div></blockquote></div><br></div></div></div></div><br>_______________________________________________<br>
swift-evolution mailing list<br>
<a href="mailto:swift-evolution@swift.org" target="_blank">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>
<br></blockquote></div><br></div></div>
</div></blockquote></div><br></div></div></div></div><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>
<br></blockquote></div><br></div></div>