NOT
logicNegates a boolean.
The NOT
function is synonymous for !
. It consumes a boolean value x from the top of the stack and pushes back the result of appying the
NOT
logical function.
For a true input value it returns false, for a false one it returns true.