(filter-ns)
(filter-ns re)
outputs sorted collection of namespace symbols via clojure.java.classpath/classpath
and
clojure.tools.namespace.find/find-namespaces
.
Allows regex symbol filtering via optional re
argument (regex, string, or even symbols).
outputs sorted collection of namespace symbols via `clojure.java.classpath/classpath` and `clojure.tools.namespace.find/find-namespaces`. Allows regex symbol filtering via optional `re` argument (regex, string, or even symbols).
(fqns)
(fqns symbol-or-string)
poll fully qualified namespace of symbol 's'
poll fully qualified namespace of symbol 's'
(interns)
(interns n)
inspect public symbols of namespace.
n
namespace -- can be an namespace symbol alias.
inspect public symbols of namespace. `n` namespace -- can be an namespace symbol alias.
(list-ns)
outputs sorted collection of namespace symbols via clojure.java.classpath/classpath
and
clojure.tools.namespace.find/find-namespaces
.
outputs sorted collection of namespace symbols via `clojure.java.classpath/classpath` and `clojure.tools.namespace.find/find-namespaces`.
(ns-find re)
(ns-find re n)
perform a regex search of public symbols in a namespace re - regex pattern (symbols or strings will be coerced to a pattern) n - namespace symbol (either quoted or unquoted via stringify)
perform a regex search of public symbols in a namespace re - regex pattern (symbols or strings will be coerced to a pattern) n - namespace symbol (either quoted or unquoted via stringify)
(publics)
(publics n)
inspect public symbols of namespace.
n
namespace -- can be an namespace symbol alias.
inspect public symbols of namespace. `n` namespace -- can be an namespace symbol alias.
(refers)
(refers n)
inspect referenced symbols of namespace.
n
namespace -- can be an namespace symbol alias.
inspect referenced symbols of namespace. `n` namespace -- can be an namespace symbol alias.
(seq-matches re sq)
filter a sequence by coercing items to a string and applying re-find with a supplied regex re - regex pattern (symbols or strings will be coerced to a pattern) sq - sequence of strings or string coercible objects
filter a sequence by coercing items to a string and applying re-find with a supplied regex re - regex pattern (symbols or strings will be coerced to a pattern) sq - sequence of strings or string coercible objects
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close