car -- r7rs Definition
§

Kind
§

accessor;

Implemented by
§

Procedure signature
§

Procedure variants:

Exports
§

Exports recursive
§

Description
§

(car pair)

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

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

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

Referenced-types
§