<html><head><meta http-equiv="Content-Type" content="text/html charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">This is now being tracked as&nbsp;<a href="https://bugs.swift.org/browse/SR-1882" class="">https://bugs.swift.org/browse/SR-1882</a>&nbsp;- Chris (Lattner) thought this should not go through the official proposal process as something more complicated, but just add a warning with redundant parentheses around it silencing the warning (<a href="http://article.gmane.org/gmane.comp.lang.swift.evolution/20960" class="">http://article.gmane.org/gmane.comp.lang.swift.evolution/20960</a>).<div class=""><br class=""></div><div class=""><div class="">The latest version of the proposal (that's not going to happen) can be found here -&nbsp;<a href="https://gist.github.com/charlieMonroe/82e1519dd2b57029f69bc7abe99d7385" class="">https://gist.github.com/charlieMonroe/82e1519dd2b57029f69bc7abe99d7385</a>&nbsp;- and I've implemented it for my own use here:</div></div><div class=""><br class=""></div><div class=""><a href="https://github.com/charlieMonroe/XUCore/blob/master/XUCore/additions/OptionalAdditions.swift" class="">https://github.com/charlieMonroe/XUCore/blob/master/XUCore/additions/OptionalAdditions.swift</a></div><div class=""><br class=""></div><div class="">I find it better readable than using ?? or extra parentheses around the Optional...<br class=""><div class=""><br class=""><div><blockquote type="cite" class=""><div class="">On Jul 4, 2016, at 5:31 PM, David Beck 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=""><meta http-equiv="Content-Type" content="text/html charset=utf-8" class=""><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">
&gt; The string interpolation is one of the strong sides of Swift, but also one of its weaknesses.<br class="">&gt; <br class="">&gt; It has happened to me more than once that I've used the interpolation with an optional by mistake and the result is then far from the expected result.<br class="">&gt; <br class="">&gt; This happened mostly before Swift 2.0's guard expression, but has happened since as well.<br class="">&gt; <br class="">&gt; The user will seldomly want to really get the output "Optional(something)", but is almost always expecting just "something". I believe this should be addressed by a warning to force the user to check the expression to prevent unwanted results. If you indeed want the output of an optional, it's almost always better to use the ?? operator and supply a null value placeholder, e.g. "\(myOptional ?? "&lt;&lt;none&gt;&gt;")", or use myOptional.debugDescription - which is a valid expression that will always return a non-optional value to force the current behavior.<br class="">&gt; <br class="">&gt; Krystof<br class="">&gt; <br class="">&gt; <br class="">&gt;<span class="Apple-converted-space">&nbsp;</span>

<br class=""><br class="">I really hope a proposal that solves this problem gets through, but I’m not sure blocking optionals specifically is the way to go. In particular there are other types that don’t have a clean string representation. I think that by default string interpolation (meaning String creation specifically) should only accept&nbsp;ValuePreservingStringConvertible types and produce an error for everything else.<div class=""><br class=""></div><div class="">But, in addition, we need a way to quickly print out values for debugging. I think a new string type (DebugString for example) would be useful for this. print and similar functions could take that as an argument and any type could be interpolated in it’s argument. Further, if you simply say `let a = “\(something)”` and something isn’t&nbsp;ValuePreservingStringConvertible, the type of a should then be DebugString. Converting to string should be strait forward, but require a small step to make it obvious that you are using a string that could have weird characters.<br class=""><div class="">
<div style="letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><span class="Apple-style-span" style="border-collapse: separate; font-variant-ligatures: normal; font-variant-position: normal; font-variant-numeric: normal; font-variant-alternates: normal; font-variant-east-asian: normal; line-height: normal; border-spacing: 0px;"><div class=""><br class="Apple-interchange-newline"><b style="font-size: 18px;" class="">David Beck</b></div><div style="font-weight: normal;" class=""><a href="http://davidbeck.co/" class="">http://davidbeck.co</a></div><div style="font-weight: normal;" class=""><a href="http://twitter.com/davbeck" class="">http://twitter.com/davbeck</a></div><div style="font-weight: normal;" class=""><a href="http://facebook.com/davbeck" class="">http://facebook.com/davbeck</a></div></span></div>
</div>

<br class=""></div></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=""></div></div></body></html>