<div dir="ltr">The immediate problem I see with your suggestion is the reason why optionals in Swift are pretty damned awesome: Swift doesn&#39;t have default values. A Bool is not false by default; the Swift compiler will complain if you don&#39;t initialise a Bool variable with a value, one way or the other.<div><br></div><div>The idea of combining an &#39;if&#39; with a &#39;soft unwrap&#39; such that if the unwrap is nil, the &#39;if&#39; fails, though - that may have merit.</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, May 11, 2016 at 1:16 PM, Basem Emara 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">Forcing unwrapping of optionals is bad practice, but safely unwrapping can be tedious. I’m hoping for something in between that would that would provide soft unwrapping using a syntax like: myVar?!<br>
<br>
For example, currently we have to do this:<br>
<br>
let temp = (myString ?? “”); print(“\(temp)”)<br>
if (myString ?? “”).isEmpty {…}<br>
if myBool ?? false {…}<br>
if (myInt ?? 0) &gt; otherInt {…}<br>
<br>
To something like this instead:<br>
<br>
print(“\(temp?!)”)<br>
if myString?!.isEmpty {…}<br>
if myBool?! {…}<br>
if myInt?! &gt; otherInt {…}<br>
<br>
What this is implying is that it will attempt to unwrap or use the default of the type.<br>
<br>
Of course, this will only work with primitive types and leverage their implicit default values which would go a long way with tedious code and more safety (less forced unwrapping in the world). Otherwise it will produce a compile error if doing something like: myCustomType?!. What do you think?<br>
<br>
Basem<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>
</blockquote></div><br></div>