Function: clojure-convert-collection-to-list

clojure-convert-collection-to-list is an autoloaded, interactive and byte-compiled function defined in clojure-mode.el.

Signature

(clojure-convert-collection-to-list)

Documentation

Convert collection at (point) to list.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/clojure-mode-20260325.811/clojure-mode.el
;;;###autoload
(defun clojure-convert-collection-to-list ()
  "Convert collection at (point) to list."
  (interactive)
  (clojure--convert-collection "(" ")"))