Anybody know a way to reflect on namespaces? I want to do the equivalent of (dir <ns>) but instead of it printing I want a list of strings or symbols of the public forms it contains.
Clojure has dir-fn available for the data of dir , not sure if that's a thing in cljr
and of course, that's just built on ns-publics and ns-aliases in clojure.core, if the equivalent exist
Meant to get back to you sooner on this @alexmiller but dir-fn works like a charm. It helps to read the clojure source! Thanks for the pointer.