<div dir="ltr"><div>@Xiaodi</div>Actually, I think just about all the rest of the precedence rules “make sense” intuitively:<div><br></div><div>`a | b == c % d`</div><div>`a &lt; b ? c : d * e`</div><div>`a ?? b - c`</div><div>`a...b+c`</div><div><br></div><div>These all do what they ought to, and of course assignment naturally has low precedence. Really the only confusing ones are operators that “seem like peers” but actually have different precedences. Namely the two groups I mentioned: logical operators and bitwise operators.</div><div><br></div><div>@Daniel</div><div>Making it easy to write code that is unclear to other people who read it, is an explicit anti-goal for Swift.</div><div><br></div><div>Nevin</div><div><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Aug 2, 2016 at 1:42 PM, Xiaodi Wu <span dir="ltr">&lt;<a href="mailto:xiaodi.wu@gmail.com" target="_blank">xiaodi.wu@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">This is an expansive argument you advance. Should users be expected to learn *any* rules of precedence beyond those of basic arithmetic? It would seem that you are arguing no. Yet Swift just went through an arduous redesign to permit--nay, improve--exactly that.<div class="HOEnZb"><div class="h5"><br><div class="gmail_quote"><div dir="ltr">On Tue, Aug 2, 2016 at 12:30 Nevin Brackett-Rozinsky &lt;<a href="mailto:nevin.brackettrozinsky@gmail.com" target="_blank">nevin.brackettrozinsky@gmail.com</a>&gt; wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Speaking for myself, I will *never* remember which of `&amp;&amp;` and `||` has higher precedence. I think of them as peers, so I always use parentheses around them, and whenever I read code that mingles them without parentheses its meaning is *unclear* to me.<div><br></div><div>One of Swift’s main goals is clarity at the point of use. After all, code is read far more often than it is written. To me, an expression like `a &amp;&amp; b || c &amp;&amp; d` is not clear when I read it.</div><div><br></div><div>The same goes for bitwise operators: I view them as peers. I do not think of them as “additive” or “multiplicative” (and definitely not “subtractive”), so code that relies on their precedences will always send me scrambling to look up which comes first.</div><div><br></div><div>Certainly something like `a + b | c &amp; d - e * f ^ g` is meaningless to me without parentheses.</div></div><div dir="ltr"><div><br></div><div>Nevin</div><div><br></div><div><br></div></div><div class="gmail_extra"><div class="gmail_quote">On Tue, Aug 2, 2016 at 12:08 PM, Xiaodi Wu 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></div><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">That&#39;s an excellent point, actually. Would there be downsides not yet considered?<div><div><br><br><div class="gmail_quote"><div dir="ltr">On Tue, Aug 2, 2016 at 11:03 Félix Cloutier &lt;<a href="mailto:felixcca@yahoo.ca" target="_blank">felixcca@yahoo.ca</a>&gt; wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word">These expressions mix two types of logic that have different implications. For instance, `a * 16` and `a &lt;&lt; 4` are &quot;mostly equivalent&quot;, except that `a * 16` will crash on overflow. In these cases, I find that grouping provides some visual insulation that groups off the somewhat subtle differences.<div></div></div><div style="word-wrap:break-word"><div><div>
<br><span style="color:rgb(0,0,0);font-family:&#39;Lucida Grande&#39;;font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;display:inline!important;float:none">Félix</span>
</div></div></div><div style="word-wrap:break-word"><div>
<br><div><blockquote type="cite"><div>Le 2 août 2016 à 08:49:07, Xiaodi Wu &lt;<a href="mailto:xiaodi.wu@gmail.com" target="_blank">xiaodi.wu@gmail.com</a>&gt; a écrit :</div><br><div><div dir="ltr" style="font-family:LucidaGrande;font-size:12px;font-style:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px">On Tue, Aug 2, 2016 at 10:41 AM, Félix Cloutier<span> </span><span dir="ltr">&lt;<a href="mailto:felixcca@yahoo.ca" target="_blank">felixcca@yahoo.ca</a>&gt;</span><span> </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"><div style="word-wrap:break-word">I don&#39;t think that &quot;intuitive&quot; or &quot;non-intuitive&quot; is what you&#39;d be looking for. There is nothing intuitive about multiplications having a higher precedence than additions; it&#39;s just a matter of conventions. I&#39;m not a maths expert (as Stephen showed, I didn&#39;t even give the right explanation to binary operators!), but it seems to me that there could well be a parallel universe in which additions have precedence over multiplications without other serious implications.<div><br></div><div>And as it happens, a majority of people don&#39;t know that there is one for binary operators. I believe that the right question should be: do we want to pretend that this convention doesn&#39;t exist, to the benefit of people who don&#39;t know about it, and the detriment of those who do? Also, do we want to break it for &amp;&amp; and || too?</div><div><br></div><div>I think that the biggest use case for binary operators in other languages are flags, and in Swift we treat these as collections. I&#39;d venture that &amp;, | and ^ would show up about as frequently as UnsafePointers and the like. It seems to me that Swift&#39;s approach has been to make things easy by default without locking away the power tools, and my personal expectation is that if you have to write code that has binary operators despite everything else that Swift has for you, you can be bothered to learn a precedence rule.</div><div><br></div><div>That said, one thing that I could definitely get behind is breaking precedence between binary operators and arithmetic operators. I don&#39;t think that it makes sense to write something like &quot;a &amp; b / c&quot;. Looking at my code, the only place where I needed to mix binary operators and arithmetic operators were `a &amp; (a - 1)` (results in 0 if a is a power of two), and that one needs parentheses anyway.</div></div></blockquote><div><br></div><div>Although here, your same argument applies. If you need to write `a &amp; b / c`, then you can be bothered either to learn or look up a table, or you can just put in the parenthesis yourself. Likewise, if you&#39;re a reader of the code, it&#39;s highly likely that this is a complex formula anyway; you can either know the relative precedence or look it up, but that&#39;s the *least* of your worries in terms of what it will take to understand that code. I see no reason to force parentheses unless it actually prevents user error.</div><div> </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"><div style="word-wrap:break-word"><div><span><font color="#888888"><br><div><br><span style="font-family:&#39;Lucida Grande&#39;;font-size:12px;font-style:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;float:none;display:inline!important">Félix</span></div></font></span><div><div><br><div><blockquote type="cite"><div>Le 2 août 2016 à 02:29:41, Anton Zhilin &lt;<a href="mailto:antonyzhilin@gmail.com" target="_blank">antonyzhilin@gmail.com</a>&gt; a écrit :</div><br><div><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">2016-08-02 7:18 GMT+03:00 Félix Cloutier<span> </span><span dir="ltr">&lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt;</span>:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex"><div style="word-wrap:break-word">I disagree. The binary operators have properties that are comparable to arithmetic operators, and their precedence is easy to define as such. &amp; has multiplication-like properties (0*0=0, 0*1=0, 1*0=0, 1*1=1); | has addition-like properties (0+0=0, 0+1=1, 1+0=1, 1+1=2); ^ has subtraction-like properties (0-0=0, 0-1=-1, 1-0=1, 1-1=0), and their precedences are set accordingly (&amp; is multiplicative, | and ^ are additive).<div><div><br></div><div>The same applies to &amp;&amp; and ||. Bit shifts are exponentiative.<br></div></div></div></blockquote><div><br></div>I believe that such way of thinking is non-intuitive. In C, bitwise operators are not intervened by any others, except for comparison operators (agreed, it was a mistake). We now have possibilities to do so in Swift, even better. I suggest to branch off right before AdditionPrecedence:<div><br></div><div>RangeFormation &lt; Addition &lt; Multiplication</div><div>RangeFormation &lt; BitwiseOr &lt; BitwiseAnd &lt; LogicalShift</div><div><br></div><div>Another concern is NilCoalescing, which can be though to be semantically similar to Ternary. And at the same time it looks like || and &amp;&amp;, which would bring it between LogicalConjunction and Comparison.</div><div>Also, do Casting and RangeFormation stand where they should?</div><div><br></div><div>Next, Ternary operator is unique. Noone would ever like to put operators in this precedence group, because it would be confusing. Why not simplify our model and say that ?: has lower precedence than all binary operators, including Assignment? Unary &gt; binary &gt; ternary, sounds good? </div></div></div></div></div></blockquote></div></div></div></div></div></blockquote></div></div></div></div></blockquote></div><br></div></div></blockquote></div>
</div></div><br></blockquote></div></div><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">_______________________________________________<br>
swift-evolution mailing list<br>
<a href="mailto:swift-evolution@swift.org" target="_blank">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>
<br></blockquote></div></div></blockquote></div>
</div></div></blockquote></div><br></div>