Function: clojure-thread-last-all
clojure-thread-last-all is an autoloaded, interactive and
byte-compiled function defined in clojure-mode.el.
Signature
(clojure-thread-last-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-last-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))