Function: caaadr

caaadr is a byte-compiled function defined in subr.el.gz.

Signature

(caaadr X)

Documentation

Return the car of the car of the car of the cdr of X.

View in manual

Aliases

cl-caaadr

Source Code

;; Defined in /usr/src/emacs/lisp/subr.el.gz
(defun caaadr (x)
  "Return the `car' of the `car' of the `car' of the `cdr' of X."
  (declare (side-effect-free t)
           (compiler-macro internal--compiler-macro-cXXr))
  (car (car (car (cdr x)))))