How do you get all the functions defined in the namespace in Clojure?

183 Views Asked by At

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?

1

There are 1 best solutions below

1
On BEST ANSWER

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.