Boolean not

library operator
ID: a56807fd-ddae-4e3c-b726-f75cf89397a4
Emits the inverse of a given boolean.
Takes a boolean and emits true in case it is false, and false if it is true.

Behavior

Test data showing the behavior of Boolean not

Invert

It emits the inverse boolean.

Input Output
true false
false true

Implementation

The implementation of Boolean not makes use of the following 1 operators.

1
Evaluates an expression.

Used in

The Boolean not operator is used by 1 operators.

Xor
Emits true only if the given boolean values A and B are not equal.