Function: transient--nth

transient--nth is a byte-compiled function defined in transient.el.gz.

Signature

(transient--nth N LIST)

Source Code

;; Defined in /usr/src/emacs/lisp/transient.el.gz
(defun transient--nth (n list)
  (nth (if (< n 0) (- (length list) (abs n)) n) list))