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