<div dir="ltr">While <font face="monospace">&quot;foo&quot;.hasPrefix(&quot;&quot;) == false </font>might make <i>some</i> intuitive sense in a &quot;why would you ever do that&quot; type of way, remember that the cases where this matters are the cases where it&#39;s not hardcoded - for example, if I were validating file names, <font face="monospace">&quot;foo.txt&quot;.hasSuffix(&quot;txt&quot;)</font> should return true. It would be reasonable to expect that a suffix might not be required, and thus not provided by the user - in that case, I would expect <font face="monospace">&quot;foo.txt&quot;.hasSuffix(blankStringProvidedByUser)</font> to return true.<div><br></div><div>There are many such cases. The need to special-case in caller code in the current implementation is far more onerous than it would be if this change were made.</div><div dir="ltr"><div><br></div><div>Parker</div></div><br><div class="gmail_quote"><div dir="ltr">On Tue, Jul 19, 2016 at 10:17 AM 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></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">ok, Dave<br>
<br>
<br>
<br>
to me - strings being collections -, all I see is:<br>
trying to find an empty string within another string: There are (at least) two ways of treating this:<br>
<br>
1.  return “false”  seems to me logically correct, because<br>
     there is never an empty string in another string, and an empty string cannot contain another empty string, right?<br>
    This has worked very conveniently for NSString in ObjC for more than 20 years, why change it?<br>
    Do you know of cases that were problematic with this convention?<br>
<br>
<br>
2  throw a runtime error when trying to do this:<br>
    str.hasPrefix(“”)     //  also for hasSuffix,  str.contains etc.<br>
<br>
some in-line questions below.<br>
<br>
Kind Regards<br>
<br>
Ted<br>
<br>
<br>
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;<br>
&gt;<br>
&gt; on Tue Jul 19 2016, &quot;Ted F.A. van Gaalen&quot; &lt;tedvgiosdev-AT-gmail.com&gt; wrote:<br>
&gt;<br>
&gt;&gt; Hi Dave<br>
&gt;&gt;<br>
&gt;&gt; “true” ? am I going nuts ? :o)<br>
&gt;&gt;<br>
&gt;&gt; var str = &quot;Hello, playground&quot;<br>
&gt;&gt;<br>
&gt;&gt; print( str.hasPrefix(&quot;”)) // case 1 : false<br>
&gt;&gt;<br>
&gt;&gt; print( str.hasSuffix(&quot;”)) // case 2 : false<br>
&gt;&gt;<br>
&gt;&gt; print(&quot;&quot; == “a” )          // case 3 : false<br>
&gt;&gt;<br>
&gt;&gt; Currently, all cases above evaluate to “false”<br>
&gt;&gt; i think that is correct,<br>
&gt;<br>
&gt; I don&#39;t know what to tell you.  It may seem intuitively correct to you,<br>
&gt; but others in the thread have laid out the reasons why it is not<br>
&gt; mathematically correct behavior.<br>
Where? I couldn’t find any.<br>
&gt; One other way of rephrasing it: to get<br>
&gt; `false` for str.hasPrefix(&quot;&quot;), you actually need special-case code in<br>
&gt; hasPrefix to check for the empty string,<br>
again, maybe it should throw a run-time error instead.<br>
<br>
<br>
&gt; and the caller may well also<br>
&gt; need special-case code to handle the fact that the result is not<br>
&gt; mathematically consistent with other cases on the continuum.<br>
In this context as “continuum” :<br>
   are you referring to  “sets” or “collections” here?<br>
what other cases?<br>
<br>
&gt;  Doing<br>
&gt; things that way doesn&#39;t work in practice for real programs.<br>
please explain thank you, because I see no problems at<br>
all with the current NSString-like evaluation…<br>
I’d put an s.isEmpty() in front of it.<br>
&gt;<br>
&gt;&gt; because:<br>
&gt;&gt;<br>
&gt;&gt; How can an empty string be a prefix or suffix value?<br>
&gt;&gt; as there is no empty string present in a non-empty string.<br>
&gt;&gt;<br>
&gt;&gt; Note that if case 1 and case 2 would evaluate to “true”,<br>
&gt;&gt; it would conflict with case 3.<br>
&gt;&gt;<br>
&gt;&gt; Can’t imagine that case 3 should in future also result in “true”<br>
&gt;&gt;<br>
&gt;&gt; ??<br>
&gt;&gt;<br>
&gt;&gt; -----<br>
&gt;&gt;<br>
&gt;&gt; Also I hope that changes to String functionality<br>
&gt;&gt; for Swift 4 are not backward breaking changes<br>
&gt;&gt; even the more for string handling, because Strings<br>
&gt;&gt; are heavily used in most apps.<br>
&gt;&gt;<br>
&gt;&gt; I am firmly convinced that all future releases of Swift<br>
&gt;&gt; should compile Swift 3 and higher source files without<br>
&gt;&gt; any changes 100 % flawlessly! This prevents early diminishing<br>
&gt;&gt; of Swift’s popularity, especially with those building large<br>
&gt;&gt; codebases using Swift.<br>
&gt;&gt;<br>
&gt;&gt; I’ve started a thread about this a week ago,<br>
&gt;&gt; however no one found this important enough to<br>
&gt;&gt; share their opinions with me yet, or were too busy with<br>
&gt;&gt; other subjects to do so.<br>
&gt;&gt;<br>
&gt;&gt; Increasingly I have dreams, me<br>
&gt;&gt; programming complete apps in Smalltalk<br>
&gt;&gt; and then automagically generate<br>
&gt;&gt; an macOS, tvOS or iOS runtime app of it.<br>
&gt;&gt;<br>
&gt;&gt; (I have also dreams of this world becoming<br>
&gt;&gt; a nice and peaceful placebut that is<br>
&gt;&gt; beyond the context of this forum)<br>
&gt;&gt;<br>
&gt;&gt; Kind Regards<br>
&gt;&gt; TedvG<br>
&gt;&gt;<br>
&gt;&gt; <a href="http://www.speyer.de" rel="noreferrer" target="_blank">www.speyer.de</a><br>
&gt;&gt;<br>
&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;<br>
&gt;&gt;&gt;&gt; I agree, true is definitely the expected behavior. In particular, it<br>
&gt;&gt;&gt;&gt; seems absurd to me that `a.hasPrefix(b)` and `a.hasSuffix(b)` could be<br>
&gt;&gt;&gt;&gt; false when `a == b` is true.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; I expect to be reworking Strings for Swift 4, and this is one of the<br>
&gt;&gt;&gt; many things we plan to address.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; --<br>
&gt;&gt;&gt; Dave<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;<br>
&gt;<br>
&gt; --<br>
&gt; Dave<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>