I want to see all the functions defined in the current namespace. Is there a function I can call in the REPL that can answer this question?
Asked
Active
Viewed 158 times
1 Answers
5
You can use the ns-map
function along with the *ns*
variable.
(ns-map *ns*)
All the namespace functions are outlined on the clojure.org namespaces page.

Jeremy
- 22,188
- 4
- 68
- 81
-
1So the complete form for the OP's question is `(ns-map *ns*)`. – Michael Kohl Feb 03 '11 at 14:46