Function: clojure-thread-first-all
clojure-thread-first-all is an autoloaded, interactive and
byte-compiled function defined in clojure-mode.el.
Signature
(clojure-thread-first-all BUT-LAST)
Documentation
Fully thread the form at point using ->.
When BUT-LAST is non-nil, the last expression is not threaded.
Default value is clojure-thread-all-but-last.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/clojure-mode-20260325.811/clojure-mode.el
;;;###autoload
(defun clojure-thread-first-all (but-last)
"Fully thread the form at point using ->.
When BUT-LAST is non-nil, the last expression is not threaded.
Default value is `clojure-thread-all-but-last'."
(interactive "P")
(clojure--thread-all "-> " but-last))