I would like to know how to list all functions of a Clojure namespace. I’ve done some research but I’m not there yet. I already found out how to list the methods of a Java class using the show method:
(show java.awt.Graphics)
To list the functions of a Clojure namespace I’ve tried the show method like this:
(show 'clojure.contrib.repl-utils)
This shows some Java class methods, but not the ones I’m looking for like doc and show. How can I get those?
I normally call
to list Vars exported by the namespace
foo; e.g. forclojure.contrib.monadsthis returns(the
...stands for quite a lot more).More generally, there’s a bunch of functions whose names start in
ns-which list Vars by namespace, with certain additional criteria attached:ns-map— the most general function of all, returns a map keyed by symbols (non-namespace-qualified symbols actually), where the value corresponding to each symbol is the Var or class that symbol resolves to in the given namespace.ns-interns— likens-map, but includes only the Vars interned in the given namespace (as opposed to Vars from other namespaces which are accessible from the given namespace due to auseorrefercall or the implicit referral of Vars fromclojure.core.ns-publics— likens-interns, but includes only the non-private Vars.ns-imports— likens-map, but includes only the entries whose values correspond to Java classes.There’s also
ns-aliaseswhich lists symbols which can be used as shorthand aliases when referring to Vars from other namespaces; e.g. if you call(require '[clojure.contrib.math :as math]),ns-aliaseswill include an entry with the key ofmath(the symbol), whose value will be the actual namespaceclojure.contrib.math. These mapping are not included in the map returned byns-map.