<html><head><meta http-equiv="content-type" content="text/html; charset=utf-8"></head><body dir="auto"><div>-1 I have similar concerns on the mental ambiguity of the direction this is going.</div><div><br>On 10 Jun 2016, at 22:15, Thorsten Seitz via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt; wrote:<br><br></div><blockquote type="cite"><div><meta http-equiv="Content-Type" content="text/html charset=utf-8">-1<div class=""><br class=""><div><blockquote type="cite" class=""><div class="">Am 10.06.2016 um 21:10 schrieb Brent Royal-Gordon via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a>&gt;:</div><br class="Apple-interchange-newline"><div class=""><span style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; 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; float: none; display: inline !important;" class="">if case .some(let Point.cartesian(x, y)) where x &lt; y = json["rect"]?["origin"].flatMap(.init(rawValue:)) { … }</span></div></blockquote><br class=""></div><div>This: `where x &lt; y = json[…]` is *very* unreadable and probably unparseable as it is missing a delimiter between the boolean expression and the expression behind the assignment operator. And I do not count the assignment operator as a sufficient delimiter.</div><div><br class=""></div><div><br class=""></div><div>I’ll give the following counterargument against this shuffling around of `where` or trying to eliminate it:</div><div><br class=""></div><div><span class="Apple-tab-span" style="white-space:pre">        </span>if case .some(let x) = someExpression where x &gt; 0</div><div><br class=""></div><div><span class="Apple-tab-span" style="white-space:pre">        </span>for x in xs where x &gt; 0</div><div><br class=""></div><div>These are actually very consistent in their grammar when you look at it like follows:</div><div><br class=""></div><div><span class="Apple-tab-span" style="white-space:pre">        </span>&lt;target&gt; &lt;assignment op&gt; &lt;source&gt; where &lt;condition&gt;</div><div><br class=""></div><div><br class=""></div><div><span class="Apple-tab-span" style="white-space:pre">        </span>if case .some(let x) = someExpression where x &gt; 0</div><div><br class=""></div><div><span class="Apple-tab-span" style="white-space:pre">        </span>target: `case .some(let x)`</div><div><span class="Apple-tab-span" style="white-space:pre">        </span>assignment op: `=`</div><div><span class="Apple-tab-span" style="white-space:pre">        </span>source: `someExpression`</div><div><span class="Apple-tab-span" style="white-space:pre">        </span>condition: `x &gt; 0`</div><div><br class=""></div><div><br class=""></div><div><div><span class="Apple-tab-span" style="white-space: pre;">        </span>for x in xs where x &gt; 0</div><div class=""><br class=""></div><div class=""><div><span class="Apple-tab-span" style="white-space: pre;">        </span>target: `x`</div><div><span class="Apple-tab-span" style="white-space: pre;">        </span>assignment op: `in`</div><div><span class="Apple-tab-span" style="white-space: pre;">        </span>source: `xs`</div><div><span class="Apple-tab-span" style="white-space: pre;">        </span>condition: `x &gt; 0`</div></div><div class=""><br class=""></div><div class=""><br class=""></div><div class="">That is I’m arguing the `where` grammar is already quite regular and should not be changed. And yes, I’d like to have `where` back in `case`. And `let`.</div><div class=""><br class=""></div></div><div>-Thorsten</div><br class=""></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></body></html>