caar -- r7rs Definition accessor;
Procedure variants:
scheme:base -- (scheme base);scheme -- (scheme);(caar pair) (cadr pair) (cdar pair) (cddr pair)These procedures are compositions of
carandcdras follows:(define (caar x) (car (car x))) (define (cadr x) (car (cdr x))) (define (cdar x) (cdr (car x))) (define (cddr x) (cdr (cdr x)))
The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.
any;