Synopsis
boolean
not(boolean b
)
The not( )
function inverts its argument; that is, false
becomes true and true becomes false. For example, not(3
>
2)
is false, and not(2+2=5)
is true. Non-Booleans are
converted as by the boolean()
function before being processed.