Function: cider-apropos-summary

cider-apropos-summary is a byte-compiled function defined in cider-apropos.el.

Signature

(cider-apropos-summary QUERY NS DOCS-P INCLUDE-PRIVATE-P CASE-SENSITIVE-P)

Documentation

Return a short description for the performed apropos search.

QUERY can be a regular expression list of space-separated words
(e.g take while) which will be converted to a regular expression
(like take.+while) automatically behind the scenes. The search may be
limited to the namespace NS, and may optionally search doc strings
(based on DOCS-P), include private vars (based on INCLUDE-PRIVATE-P),
and be case-sensitive (based on CASE-SENSITIVE-P).

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-apropos.el
(defun cider-apropos-summary (query ns docs-p include-private-p case-sensitive-p)
  "Return a short description for the performed apropos search.

QUERY can be a regular expression list of space-separated words
\(e.g take while) which will be converted to a regular expression
\(like take.+while) automatically behind the scenes.  The search may be
limited to the namespace NS, and may optionally search doc strings
\(based on DOCS-P), include private vars (based on INCLUDE-PRIVATE-P),
and be case-sensitive (based on CASE-SENSITIVE-P)."
  (concat (if case-sensitive-p "Case-sensitive " "")
          (if docs-p "Documentation " "")
          (format "Apropos for %S" query)
          (if ns (format " in namespace %S" ns) "")
          (if include-private-p
              " (public and private symbols)"
            " (public symbols only)")))