<html><head><meta http-equiv="content-type" content="text/html; charset=utf-8"></head><body dir="auto"><div><br></div><div>Le 31 mai 2016 à 21:47, Xiaodi Wu via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt; a écrit&nbsp;:<br><br></div><blockquote type="cite"><div><div dir="ltr"><div>Revisiting this conversation, it seems that most of the design space has been thoroughly explored. I think all suggestions presented so far boil down to these:</div><div><br></div><div>Q: How is an arbitrary boolean assertion introduced after `if let`?</div><div><br></div><div>Option 1 (present scenario)--using `where`</div><div>Advantages: expressive when it means exactly the right thing</div><div>Drawbacks: makes obligatory the suggestion of a semantic relationship between what comes before and after even when there is no such relationship</div></div></div></blockquote><div><br></div><div>On some occasion the relation may be obscure: buy junk of the road where junk is cheap and my trunk is empty. And as mentioned many times can be worked around by evil coder. So the relationship of the where clause may be better left to the code reviewers.</div><div><br></div><blockquote type="cite"><div><div dir="ltr"><div>Option 2--using a symbol sometimes encountered in conditional statements (e.g. `&amp;&amp;` or comma)</div><div>Advantages: doesn't look out of place</div><div>Drawbacks: needs to be disambiguated from existing uses, necessitating other changes in syntax</div></div></div></blockquote><div><br></div>One issue with using &amp;&amp; which have not been discussed so far is that it may force the uses of extra parenthesis when the where clause did contain ||<div><br></div><div>How can one represent something like:</div><div><br></div><div>if let x = optionalX where x &lt; 10 || x &gt; 90 "and" y &lt; 10 || y &gt; 90 { }</div><div><br></div><div>With the removal of the where and the use of &amp;&amp; as to be expressed as:</div><div><br></div><div>if let x = optionalX &amp;&amp; ( x &lt; 10 || x &gt; 90 ) &amp;&amp; ( y &lt; 10 || y &gt; 90 ) { }</div><div><br></div><div>While using a comma (and line feed) it can be</div><div><br></div><div>if let x = optionalX,</div><div>&nbsp; &nbsp; x &lt; 10 || x &gt; 90,</div><div>&nbsp; &nbsp; y &lt; 10 || y &gt; 90</div><div>{ }</div><div><br></div><div>This option are two different options, the &amp;&amp; which impact condition already uses || and the use of comma which would require disallowing multiple binding within a single let. Some said it would be weird to allow:</div><div><br></div><div>let x = optionalX, y = optionalY</div><div><br></div><div>While disallowing:</div><div><br></div><div>if let x = optionalX, y = optionalY { }</div><div><br></div><div>But these are already two different syntax; one allows where clause and the other not.</div><div><br></div><div>One possible good thing of disallowing the multiple binding in such construct is that it make some refactoring less puzzling.</div><div><br></div><div>Starting with:</div><div><br></div><div>if let x = expensiveOptionalX(), y = expensiveOptionalY() { }</div><div><br></div><div>If one want to add a 'where x &lt; 10' there is currently two choices:</div><div><br></div><div><span style="background-color: rgba(255, 255, 255, 0);">if let x = expensiveOptionalX(), y = expensiveOptionalY() where x &lt; 10 { }</span></div><div><span style="background-color: rgba(255, 255, 255, 0);">if let x = expensiveOptionalX() where x &lt; 10, let y = expensiveOptionalY() { }</span></div><div><span style="background-color: rgba(255, 255, 255, 0);"><br></span></div><div><span style="background-color: rgba(255, 255, 255, 0);">For performance and proper relation the 'where' should be against the variable 'x', but this forces the addition of a new 'let' which most coder will add only after seeing the compile error and possibly after the use of some foul language.</span></div><div><br></div><div><br></div><div>Dany</div><div><br></div><div><blockquote type="cite"><div><div dir="ltr"><div><br></div><div>Option 3--using a symbol never encountered in conditional statements (e.g. semicolon)</div><div>Advantages: doesn't need to be disambiguated from any existing uses</div><div>Drawbacks: looks out of place</div><div><br></div><div>For me, options 1 and 2 have permanent and objective drawbacks. By contrast, familiarity increases with time, and beauty is in the eye of the beholder.</div><div><br></div><div>* * *</div><div><br></div><div>It does occur to me that there is one more option. I don't know that I like it, but it's an option no one has put forward before: recite the opening keyword when beginning a new boolean expression:</div><div><br></div><div>`if let x = x where x &lt; 3 { ... }` becomes</div><div>`if let x = x if x &lt; 3 { ... }`</div><div><br></div><div>`while let item = sequence.next() where item &gt; 0 { ... }` becomes</div><div>`while let item = sequence.next() while item &gt; 0 { ... }`</div><div><br></div><div>etc.</div><div><br></div><div><br></div>On Tue, May 31, 2016 at 2:00 PM, Erica Sadun <span dir="ltr">&lt;<a href="mailto:erica@ericasadun.com" target="_blank">erica@ericasadun.com</a>&gt;</span> wrote:<br><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class=""><br>
&gt; On May 31, 2016, at 12:52 PM, Xiaodi Wu &lt;<a href="mailto:xiaodi.wu@gmail.com">xiaodi.wu@gmail.com</a>&gt; wrote:<br>
&gt; These lines of reasoning are what have compelled me to conclude that `where` might not be salvageable.<br>
<br>
</span>To which, I'd add: `where` suggests there's a subordinate and semantic relationship between the primary condition and the clause. There's no way as far as I know this to enforce it in the grammar and the proposal allows both clauses to be stated even without the connecting word. You could make a vague argument, I suppose, for renaming `where` to `when` but all in all, even killing `where` we benefit with better expressive capabilities and a simpler grammar.<br>
<span class="HOEnZb"><font color="#888888"><br>
-- E<br>
<br>
</font></span></blockquote></div><br></div></div>
</div></blockquote><blockquote type="cite"><div><span>_______________________________________________</span><br><span>swift-evolution mailing list</span><br><span><a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a></span><br><span><a href="https://lists.swift.org/mailman/listinfo/swift-evolution">https://lists.swift.org/mailman/listinfo/swift-evolution</a></span><br></div></blockquote></div></body></html>