Function: clojure-convert-collection-to-quoted-list
clojure-convert-collection-to-quoted-list is an autoloaded,
interactive and byte-compiled function defined in clojure-mode.el.
Signature
(clojure-convert-collection-to-quoted-list)
Documentation
Convert collection at (point) to quoted list.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/clojure-mode-20260325.811/clojure-mode.el
;;;###autoload
(defun clojure-convert-collection-to-quoted-list ()
"Convert collection at (point) to quoted list."
(interactive)
(clojure--convert-collection "'(" ")"))