Archive: Logiclib operand priorities


Logiclib operand priorities
${If} a ${AndIf} b ${OrIf} c means:

if (a && (b ||c))
or
if ((a && b) || c)

?

Thks,

Gal'


It's sequential, so ((a&&b)||c).


thks.

Gal'