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

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 17 Current »

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.

  • No labels