Function: cdddar

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

Signature

(cdddar X)

Documentation

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

View in manual

Aliases

cl-cdddar

Source Code

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