[swift-evolution] Standard operator precedence

Chris Lattner clattner at apple.com
Mon Feb 15 12:20:26 CST 2016


> On Feb 14, 2016, at 10:25 AM, Xiaodi Wu <xiaodi.wu at gmail.com> wrote:
> 
> Some further study has been helpful. Am I close to the mark in answering my own question?
> 
> - Further reading shows that Swift's rationalized operator precedence levels broadly align with those of Erlang and Go. (However, those languages also seem to lack documentation on how they arrived at this set of precedence levels.)
> 
> - It is quite evident why << is considered exponentiative.
> 
> - Dennis Ritchie has explained <http://www.lysator.liu.se/c/dmr-on-or.html <http://www.lysator.liu.se/c/dmr-on-or.html>> why & has lower precedence than == in C, and why in hindsight that is better off changed. This change has been implemented in Swift/Go/Erlang and also in other languages like Python.
> 
> - & is considered multiplicative because for two bits A and B, A & B == A * B.
> 
> - ^ and | should have equal precedence to - and +, respectively, by analogous reasoning.
> 
> - It also happens to be rational for & to have higher precedence than | by analogy with && and ||.

Yep, this is all right.

> It's a bit of a bummer, if this line of reasoning was indeed used in arriving at these operator precedence levels, that Swift will not allow evaluation of true * true (etc.) without casting. I would expect true & true == true * true.

I’m not sure what you mean here.  You want multiplication defined on booleans?

-Chris
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.swift.org/pipermail/swift-evolution/attachments/20160215/3ea1289e/attachment.html>


More information about the swift-evolution mailing list