left-to-right precedence

views updated

left-to-right precedence A simple form of precedence hierarchy, used in APL, in which operators are taken in the order in which they appear in the expression. Each operator takes everything to the right as its right operand, thus ab + c

evaluates as a ∗ (b + c)

Note that, paradoxically, left-to-right precedence actually causes operators to be applied in right-to-left sequence.