cdr -- r7rs Definition
§

Kind
§

accessor;

Implemented by
§

Procedure signature
§

Procedure variants:

Exports
§

Exports recursive
§

Description
§

(cdr pair)

Returns the contents of the cdr field of pair. Note that it is an error to take the cdr of the empty list.

(cdr '((a) b c d))      ===>  (b c d)
(cdr '(1 . 2))          ===>  2
(cdr '())               ===>  #error

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

Referenced-types
§