caaar
-- r7rs
Definition accessor
;
Procedure variants:
scheme:cxr
-- (scheme cxr)
;scheme
-- (scheme)
;(caaar pair) (caadr pair) ... (cdddar pair) (cddddr pair)
These twenty-four procedures are further compositions of
car
andcdr
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.
any
;