Go to the first, previous, next, last section, table of contents.


caar &tc

Function: caar { cons -> val }
file: 10-C-lists.muf
package: muf
status: alpha

CommonLisp defines a number of abbreviation functions:

caar       Same as car car
cadr       Same as car cdr
cdar       Same as cdr car
...        ...
cdaddr     Same as cdr car cdr cdr
...        ...

All combinations of up to four car or cdr operators are defined in this way.


Go to the first, previous, next, last section, table of contents.