Function: transient--nth

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

Signature

(transient--nth N LIST)

Source Code

;; Defined in ~/.emacs.d/elpa/transient-20260414.1009/transient.el
(defun transient--nth (n list)
  (nth (if (< n 0) (- (length list) (abs n)) n) list))