4

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?

dan
  • 43,914
  • 47
  • 153
  • 254

1 Answers1

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