not
Last updated
Was this helpful?
To negate any condition, use not.
not follows three-valued logic: not true is false, not false is true, and not unknown stays unknown - if we do not know the underlying value, we cannot know its negation either.
p is Person
not p.domicile = chThis simply gets you the opposite result from using p.domicile = ch . If the person in the case does not live in Switzerland, this condition evaluates as true.
Last updated
Was this helpful?
Was this helpful?
