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
;; Sometimes I like to ask which public functions a namespace provides.
(defn- ns-publics-list [ns] (#(list (ns-name %) (map first (ns-publics %))) ns))