2.1.2 Boolean Operations

These are the Boolean operations, ordered by ascending priority:   

tableiii75

        

, Notes:

(1)
These only evaluate their second argument if needed for their outcome.

(2)
`not' has a lower priority than non-Boolean operators, so e.g. not a == b is interpreted as not(a == b), and a == not b is a syntax error.



guido@CNRI.Reston.Va.US