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.

View in manual

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 (side-effect-free t)
           (compiler-macro internal--compiler-macro-cXXr))
  (car (car x)))