Function ATOM
atom
object => generalized-boolean
object - オブジェクト
generalized-boolean - generalized-boolean
objectが型atom
ならtrueを、 それ以外ならfalseを返却します。
atom 'sss) => true
(atom (cons 1 2)) => false
(atom nil) => true
(atom '()) => true
(atom 3) => true (
なし。
なし。
なし。
atom object) == (typep object 'atom) == (not (consp object))
(not (typep object 'cons)) == (typep object '(not cons)) == (