not

not, operator

The keyword not is the logical NOT operator.

Example

table T = with
  [| as A  |]
  [| false |]
  [| true  |]

show table "" a1b2 with
  T.A as "A"
  not T.A as "not A"

This outputs the following table:

A not A
False True
True False

See also

User Contributed Notes
0 notes + add a note