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