Function: cdadr

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

Signature

(cdadr X)

Documentation

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

Aliases

cl-cdadr

Source Code

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