Function: cadar

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

Signature

(cadar X)

Documentation

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

Aliases

cl-cadar

Source Code

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