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.
Aliases
fourth (obsolete since 27.1)
cl-fourth
cl-cadddr
-fourth-item
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 (side-effect-free t)
(compiler-macro internal--compiler-macro-cXXr))
(car (cdr (cdr (cdr x)))))