-
Notifications
You must be signed in to change notification settings - Fork 1
Not
mtbeek32 edited this page Jan 2, 2023
·
5 revisions
Logical functions not (!)
- not(condition)
- !condition
not(condition) or !condition results in true values if condition is false and vice versa.
- condition data item with bool value type
attribute
notA (LDomain) :=
not
(condA);
attribute
notA (LDomain) :=
!
condA;
condA | notA | |
False | True | |
True | False |
DDomain, nr of rows = 2
GeoDMS ©Object Vision BV. Source code distributed under GNU GPL-3. Documentation distributed under CC BY-SA 4.0.