symbolp
object => generalized-boolean
object---an object.
generalized-boolean---a generalized boolean.
Returns true if object is of type symbol; otherwise, returns false.
(symbolp 'elephant) => true (symbolp 12) => false (symbolp nil) => true (symbolp '()) => true (symbolp :test) => true (symbolp "hello") => false
section keywordp [Function] , symbol, section typep [Function]
(symbolp object) == (typep object 'symbol)
Go to the first, previous, next, last section, table of contents.