[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Associativity
- From: Roberto Ierusalimschy <roberto@...>
- Date: Tue, 20 Aug 2002 17:13:14 -0300
Ok: the Lua 5.0 compiler will not rearrange commutativity/associativity
operators.
To allow an important optimization, the concatenation operator will be
right associative (always). (It already is that way since 4.0, but the
manual disguised that fact.) We still can use parentheses to force
explicit associtations.
-- Roberto