Function: cdddr

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

Signature

(cdddr X)

Documentation

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

Aliases

cl-cdddr

Source Code

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