Missing operator precedence for 'not'

The table doesn’t include the boolean unary not operator. I’m guessing it’s higher precedence than or and and?

Yes, unary ops have higher precedence than any binary one. I suppose the table only lists binary (and mixfix) operators because unary ones don’t have varying precedences.

1 Like