Function: caar
caar is a byte-compiled function defined in subr.el.gz.
Signature
(caar X)
Documentation
Return the car 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 caar (x)
"Return the car of the car of X."
(declare (compiler-macro internal--compiler-macro-cXXr))
(car (car x)))