Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Panel
bgColorwhite

NOT


This operator reverses the value of its boolean argument.


Syntax

Code Block
NOT argument


Input
  • argument - The boolean condition of which you want to reverse its value.


Return type

  • boolean


Examples

ExpressionResultType
NOT (TRUE)FALSEBoolean
NOT (TRUE AND FALSE)TRUEBoolean
NOT ( ? (= UNKNOWN) )UNKNOWNBoolean
NOT (NOT (TRUE))TRUEBoolean
Tip

Using brackets is not required, but advised to clearly indicate which boolean condition needs to be reversed.


Back to top