Skip to content
mtbeek32 edited this page Jan 2, 2023 · 5 revisions

Logical functions not (!)

syntax

  • not(condition)
  • !condition

definition

not(condition) or !condition results in true values if condition is false and vice versa.

applies to

example

attribute notA (LDomain) := not(condA); attribute notA (LDomain) := !condA;

condA notA
False True
True False

DDomain, nr of rows = 2

see also

Clone this wiki locally