Verifies that an item is bound to nil
(null item)
Arguments
An AutoLISP expression.
Return Values
T if item evaluates to nil; otherwise nil.
Examples
Command: (setq a 123 b "string" c nil)
nil
Command: (null a)
Command: (null b)
Command: (null c)
T
Command: (null '())
The not function.