Inverses a condition. No action is taken if the condition evaluates to unknown.
The operators !
and andnot
can both be used and are exaclty the same.
Syntax
!Value
not Value
Returns
A new value that is the inverse of Value
.
Examples
!28 /* results in -28*/
not true /* results in false */