<div dir="ltr">On Mon, Oct 31, 2016 at 8:37 PM, Joe Groff 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><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">Sorry for piling onto the bikeshed. We do already have a notation for testing that an Optional isn&#39;t nil, `x != nil`. We could theoretically bless `&lt;decl ref&gt; != nil` as a statement condition to also unwrap the referenced declaration in the scope guarded by the condition. (`&lt;decl ref&gt; is T` could similarly rebind a declaration as the cast type.)<br></blockquote><div><br></div><div>I think we&#39;d have some weirdness. For instance:</div><div><br></div><div>```</div><div><div>guard x != nil || x == y else { break }</div><div>// oops, now x isn&#39;t unwrapped anymore because I added a condition<br></div></div><div>```</div><div><br></div><div>Also, it&#39;d be unexpected for it to be blessed for guard but not if:</div><div><br></div><div>```</div><div>if x != nil {</div><div>  // is x unwrapped here?</div><div>  // if so, this would be source-breaking...</div><div>  // if not, it would be surprisingly inconsistent</div><div>}</div><div>```</div><div><br></div><div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">
<br>
-Joe<br>
<div class="gmail-HOEnZb"><div class="gmail-h5"><br>
&gt; On Oct 28, 2016, at 3:34 PM, Erica Sadun via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt; wrote:<br>
&gt;<br>
&gt;<br>
&gt;&gt; On Oct 26, 2016, at 11:39 AM, Chris Lattner via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;&gt; On Oct 26, 2016, at 10:23 AM, Joshua Alvarado &lt;<a href="mailto:alvaradojoshua0@gmail.com">alvaradojoshua0@gmail.com</a>&gt; wrote:<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; In your example the keyword only makes sense if you are shadowing the optional variable. How would unwrap work with a different name?<br>
&gt;&gt;<br>
&gt;&gt; It wouldn’t: “unwrap” would never include an equal sign.  If you want to do that, use a standard &quot;if let”.<br>
&gt;&gt;<br>
&gt;&gt; -Chris<br>
&gt;<br>
&gt; So I can stop thinking about this. Gist is here: <a href="https://gist.github.com/erica/db9ce92b3d23cb20799460f603c0ae7c" rel="noreferrer" target="_blank">https://gist.github.com/erica/<wbr>db9ce92b3d23cb20799460f603c0ae<wbr>7c</a><br>
&gt;<br>
&gt; -- E<br>
&gt;<br>
&gt;<br>
&gt; Introducing unwrap<br>
&gt;<br>
&gt;       • Proposal: TBD<br>
&gt;       • Author: Erica Sadun, Chris Lattner, David Goodine<br>
&gt;       • Status: TBD<br>
&gt;       • Review manager: TBD<br>
&gt; Introduction<br>
&gt;<br>
&gt; This proposal introduces unwrap, simplifying common shadowing and allowing a unified syntax for one-item associated values such as Result types.<br>
&gt;<br>
&gt; Swift-evolution thread: guard let x = x<br>
&gt;<br>
&gt; Motivation<br>
&gt;<br>
&gt; Swift lacks a unified, safe way to bind an optional or single-value enumeration to a shadowed varaiable that is guaranteed to be the same name. Introducing unwrap ensures the conditionally bound item does not accidentally shadow any other item.<br>
&gt;<br>
&gt; Compare:<br>
&gt;<br>
&gt; guard let foobar = foobar else { …<br>
&gt;  }<br>
&gt;<br>
&gt; guard unwrap foobar else { … }<br>
&gt; Using unwrap eliminates repetition (&quot;foobar = foobar&quot; fails DRY principles) and retains clarity. The keyword is common, simple to understand, and easy to search for if Swift users are unfamiliar with it.<br>
&gt;<br>
&gt; This syntax simplifies one-item associated value enumerations by offering a common syntax. Compare:<br>
&gt;<br>
&gt; enum Result&lt;T&gt; { case success(T), error(Error<br>
&gt; ) }<br>
&gt;<br>
&gt;<br>
&gt; guard case let .success(value) = result else { ...<br>
&gt;  }<br>
&gt;<br>
&gt; guard unwrap result else { ... }<br>
&gt; In the latter case result is bound to the wrapped value. Again, it is simpler and clearer, even with non-Optional types.<br>
&gt;<br>
&gt; Detailed Design<br>
&gt;<br>
&gt; unwrap can be used with any one-value enumeration. The unwrapped value is bound to the same symbol as the associated type.<br>
&gt;<br>
&gt; enum TypeName&lt;T, U&gt; { case anycase(T), anothercase(U) }<br>
&gt;<br>
&gt; // First and second are type `TypeName`<br>
&gt; let first = TypeName.anyCase(value1)<br>
&gt; let second = TypeName. anothercase(value2)<br>
&gt;<br>
&gt; guard unwrap first else { ... }<br>
&gt; // first is now shadowed as type T<br>
&gt;<br>
&gt; guard unwrap second else { ... }<br>
&gt; // second is now shadowed as type U<br>
&gt;<br>
&gt; Impact on Existing Code<br>
&gt;<br>
&gt; This change is additive and has no impact on existing code other than intentional refactoring.<br>
&gt;<br>
&gt; Timeline<br>
&gt;<br>
&gt; This proposal is additive and not suited for consideration until Swift 4 phase 2<br>
&gt;<br>
&gt; Alternatives Considered<br>
&gt;<br>
&gt;       • Using a bind keyword. Past discussions were held in the first week of February 2016.<br>
&gt;       • Fixing pattern matching grammar<br>
&gt;       • Not using this approach<br>
&gt;<br>
</div></div><div class="gmail-HOEnZb"><div class="gmail-h5">&gt; ______________________________<wbr>_________________<br>
&gt; swift-evolution mailing list<br>
&gt; <a href="mailto:swift-evolution@swift.org">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/<wbr>mailman/listinfo/swift-<wbr>evolution</a><br>
<br>
______________________________<wbr>_________________<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/<wbr>mailman/listinfo/swift-<wbr>evolution</a><br>
</div></div></blockquote></div><br></div></div>