symbol? -- r7rs Definition
§

Kind
§

type-predicate;

Extended by
§

Procedure signature
§

Procedure variants:

Exports
§

Exports recursive
§

Description
§

(symbol? obj)

Returns #t if obj is a symbol, otherwise returns #f.

(symbol? 'foo)          ===>  #t
(symbol? (car '(a b)))  ===>  #t
(symbol? "bar")         ===>  #f
(symbol? 'nil)          ===>  #t
(symbol? '())           ===>  #f
(symbol? #f)            ===>  #f

The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.

Referenced-types
§