Talk:Operator precedence

From Rosetta Code
Revision as of 18:20, 24 September 2012 by Rdm (talk | contribs) (Maybe examples would help?)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

maybe a little more specific?

What does "associate from left to right" mean?

When I look at

((a + b) + c)

or

(a + (b + c))

I could implement either of them by associating from left to right. In the first case, I would be doing bottom-up association, in the second case I would be doing top-down association. --Rdm 18:20, 24 September 2012 (UTC)