! condition
The ! operator negates the result of the following condition. It returns true when condition returns false. It returns false when condition returns true.
!
true
false
Examples:
(! (foo == bar)) ! &User-Name
(! (foo == bar))
! &User-Name