symbol? -- r7rs Definition type-predicate;
Procedure variants:
((symbol) -> (true))
((any) -> (false))
scheme:base -- (scheme base);scheme -- (scheme);(symbol? obj)Returns
#tifobjis 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.