Function: cadddr

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

Signature

(cadddr X)

Documentation

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

View in manual

Aliases

-fourth-item fourth (obsolete since 27.1) cl-cadddr cl-fourth

Source Code

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