[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Lua 5.3.0 manual: can we have the operator precedence table reversed?
- From: Roberto Ierusalimschy <roberto@...>
- Date: Mon, 5 Jan 2015 11:22:09 -0200
> Since v5.3 is close to finalization, I just throw in a suggestion about
> something (trivial) that has always bugged me: can we have the table of
> operator precedence reversed (section 3.4.8)? Not a big deal, but every
> time I look at it it feels upside-down. In every refman I've seen,
> higher precedence operators are placed, well, higher. Not so important,
> but I find it distracting (my brain automatically searches in the
> "wrong" direction - but maybe it's just me).
At least Python lists them like Lua:
https://docs.python.org/2/reference/expressions.html#operator-precedence
-- Roberto