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

See also

User Contributed Notes
0 notes + add a note