The 'not' predicate function checks to see if the 'expr' is false.
T is returned if the
expression is
(not '()) ; returns T - empty list (not ()) ; returns T - still empty (setq a NIL) ; set up a variable (not a) ; returns T - value = empty list (not "a") ; returns NIL - not a list (not 'a) ; returns NIL - not a list
Note: The 'not' predicate is the same function as the null predicate.
See the
not
predicate function in the