Skip to content

Not

Name Mandatory Description Default Type
⬅️ Input The value to be negated. Bool
Output ➡️ The negation of the input. Bool

Computes the logical negation of the input.

Examples

1
2
3
4
5
6
7
false | Not
Log("Result 1")
Assert.Is(true Break: true)

true | Not
Log("Result 2")
Assert.Is(false Break: true)