not
not, operator
Logical NOT operator.
Examples
table T = with
[| as A |]
[| false |]
[| true |]
show table "Not" with
T.A as "A"
not T.A as "NotA"
This produces the following table:
| A | NotA |
|---|---|
| false | true |
| true | false |
Logical NOT operator.
table T = with
[| as A |]
[| false |]
[| true |]
show table "Not" with
T.A as "A"
not T.A as "NotA"
This produces the following table:
| A | NotA |
|---|---|
| false | true |
| true | false |