You are viewing the documentation for Blueriq 17. Documentation for other versions is available in our documentation directory.

NOT


Reverses the value of its boolean argument.


Syntax

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


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