You are viewing the documentation for Blueriq 16. 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
Expression | Result | Type |
---|---|---|
NOT (TRUE) | FALSE | boolean |
NOT (TRUE AND FALSE) | TRUE | boolean |
NOT ( ? (= UNKNOWN) ) | UNKNOWN | boolean |
NOT (NOT (TRUE)) | TRUE | boolean |
Using brackets is not required, but advised to clearly indicate which boolean condition needs to be reversed.
Overview
Content Tools