Function: cl-eighth
cl-eighth is a byte-compiled function defined in cl-lib.el.gz.
Signature
(cl-eighth X)
Documentation
Return the eighth element of the list X.
Aliases
eighth (obsolete since 27.1)
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/cl-lib.el.gz
(defsubst cl-eighth (x)
"Return the eighth element of the list X."
(declare (gv-setter (lambda (store) `(setcar (nthcdr 7 ,x) ,store))))
(nth 7 x))