caaar -- r7rs Definition
§

Kind
§

accessor;

Implemented by
§

Procedure signature
§

Procedure variants:

Exports
§

Exports recursive
§

Description
§

(caaar pair)
(caadr pair)
...
(cdddar pair)
(cddddr pair)

These twenty-four procedures are further compositions of car and cdr on the same principles. For example, caddr could be defined by:

(define caddr (lambda (x) (car (cdr (cdr x)))))

Arbitrary compositions up to four deep are provided.


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

Referenced-types
§