Function: cadaar
cadaar is a byte-compiled function defined in subr.el.gz.
Signature
(cadaar X)
Documentation
Return the car of the cdr of the car of the car of X.
Aliases
Source Code
;; Defined in /usr/src/emacs/lisp/subr.el.gz
(defun cadaar (x)
"Return the `car' of the `cdr' of the `car' of the `car' of X."
(declare (side-effect-free t)
(compiler-macro internal--compiler-macro-cXXr))
(car (cdr (car (car x)))))