<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">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;tedvgiosdev-AT-gmail.com&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">http://biancatamayo.me</a></div>