Function: caddr

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

Signature

(caddr X)

Documentation

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

View in manual

Aliases

third (obsolete since 27.1) cl-caddr -third-item cl-third

Source Code

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