Function: cadadr

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

Signature

(cadadr X)

Documentation

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

View in manual

Aliases

cl-cadadr

Source Code

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