Function: cddadr
cddadr is a byte-compiled function defined in subr.el.gz.
Signature
(cddadr X)
Documentation
Return the cdr of the cdr of the car of the cdr of X.
Aliases
Source Code
;; Defined in /usr/src/emacs/lisp/subr.el.gz
(defun cddadr (x)
"Return the `cdr' of the `cdr' of the `car' of the `cdr' of X."
(declare (side-effect-free t)
(compiler-macro internal--compiler-macro-cXXr))
(cdr (cdr (car (cdr x)))))