not(
VALUE
)

The not( function reverses a Boolean value


Parameters

This function has one parameter:

value – a Boolean (integer) value.


Description

This function reverses a Boolean value.

not(true()) ☞ false
not(false()) ☞ true
not(1=1) ☞ false
not("green"="blue") ☞ true

Note for C Programmers: The not( function is equivalent to the ~ operator in C. It actually performs a ones-complement on the value, so you can use this function if you need to “flip the bits” in a numeric value.


See Also


History

VersionStatusNotes
10.0No ChangeCarried over from Panorama 6.0 (however it was not documented).