Function: cider--find-rest-args-position

cider--find-rest-args-position is a byte-compiled function defined in cider-eldoc.el.

Signature

(cider--find-rest-args-position ARGLIST)

Documentation

Find the position of & in the ARGLIST vector.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-eldoc.el
(defun cider--find-rest-args-position (arglist)
  "Find the position of & in the ARGLIST vector."
  (seq-position arglist "&"))