clr

bobcalco 2023-01-25T21:19:00.405899Z

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.

Alex Miller (Clojure team) 2023-01-25T22:08:25.372379Z

Clojure has dir-fn available for the data of dir , not sure if that's a thing in cljr

Alex Miller (Clojure team) 2023-01-25T22:09:31.159649Z

and of course, that's just built on ns-publics and ns-aliases in clojure.core, if the equivalent exist

bobcalco 2023-01-27T14:52:33.506959Z

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.

2