Returns 1 - x, flipping 0 to 1 and 1 to 0.
Can also be written with the ! operator: !x.
Arguments
- x
A boolean Variable or logic expression.
- id
Optional integer ID (internal use).
Examples
if (FALSE) { # \dontrun{
x <- Variable(boolean = TRUE)
not_x <- !x # operator syntax
not_x <- Not(x) # functional syntax
} # }
