Verifies that an item is bound to nil
(null item)
T if item evaluates to nil; otherwise nil.
Command: (setq a 123 b "string" c nil)
nil
Command: (null a)
nil
Command: (null b)
nil
Command: (null c)
T
Command: (null '())
T
See Also
-
The not function.