Function: cdadar

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

Signature

(cdadar X)

Documentation

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

View in manual

Aliases

cl-cdadar

Source Code

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