not


(not  item)

This function verifies whether item evaluates as NIL or non-NIL.

Arguments

item  any value or expression to be verified

Return

T if evaluation of item results in NIL value, or NIL if the evaluation is non-NIL

Example

(not "abc")  NIL

Remarks

for often used expressions like
(if (= var nil) ....)
it is better to use
(if (not var) ...)



©  Bricsys NV. All rights reserved.