Function: cider-macroexpansion--operator
cider-macroexpansion--operator is a byte-compiled function defined in
cider-macroexpansion.el.
Signature
(cider-macroexpansion--operator FORM)
Documentation
Return the operator (leading symbol) of the Clojure FORM string, or nil.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-macroexpansion.el
(defun cider-macroexpansion--operator (form)
"Return the operator (leading symbol) of the Clojure FORM string, or nil."
(when (and form (string-match "\\`(\\s-*\\([^][(){} \t\n]+\\)" form))
(match-string 1 form)))