Not

Function

Not(condition)

condition

Not is included by default in each file as part of the Logic library.

 

See also:


Use

The Not() function returns the opposite of a given boolean value. It changes true to false, and false to true.

Examples
  • Not(true)  = false
  • Not(false)  = true
  • Not(5 < 3)  = true
  • Not("Bobby" == "Bobby")  = false
  • Not("hello" == "goodbye")  = true