Function: caadr

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

Signature

(caadr X)

Documentation

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

View in manual

Aliases

cl-caadr

Source Code

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