list? -- r7rs Definition
§

Kind
§

type-predicate;

Extended by
§

Procedure signature
§

Procedure variants:

Exports
§

Exports recursive
§

Description
§

(list? obj)

Returns #t if obj is a list. Otherwise, it returns #f. By definition, all lists have finite length and are terminated by the empty list.

(list? '(a b c))     ===>  #t
(list? '())          ===>  #t
(list? '(a . b))     ===>  #f
(let ((x (list 'a)))
  (set-cdr! x x)
  (list? x))         ===>  #f

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

Referenced-types
§