NOT
- Updated2023-02-17
- 1 minute(s) read
NOT
Computes the logical negation of the input. If the input is False, this node returns True. If the input is True, this node returns False.
This node performs bitwise operations on numeric inputs.

Inputs/Outputs

x
The value to negate.
This input can be any data type that contains only Boolean values, numbers, or error clusters, such as an array of numbers or a cluster of Booleans. If this input is an error cluster, the node uses only the status element of the error cluster.

NOT x
The logical negation of x.
Examples
x | not x? |
---|---|
F | T |
T | F |