Function: cdar

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

Signature

(cdar X)

Documentation

Return the cdr of the car of X.

Probably introduced at or before Emacs version 20.1.

Source Code

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