Function: cider-resolve-alias

cider-resolve-alias is a byte-compiled function defined in cider-resolve.el.

Signature

(cider-resolve-alias NS ALIAS)

Documentation

Return the namespace that ALIAS refers to in namespace NS.

If it doesn't point anywhere, returns ALIAS.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-resolve.el
(defun cider-resolve-alias (ns alias)
  "Return the namespace that ALIAS refers to in namespace NS.
If it doesn't point anywhere, returns ALIAS."
  (or (cider-resolve--get-in ns "aliases" alias)
      alias))