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?