not - ObjectVision/GeoDMS GitHub Wiki
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
1. attribute<bool> notA (LDomain) := not(condA);
2. attribute<bool> notA (LDomain) := !condA;
condA | notA |
---|---|
False | True |
True | False |
DDomain, nr of rows = 2