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