Re: ns exports

2009-06-24 Thread Stephen C. Gilardi
here used to be an export function, and an ns-exports function to query the exports of a namespace, but I can't find that in the clojure api documentation. Do exports still exist? It does not currently exist. Functions in a namespace are public by default. They can be made private using

ns exports

2009-06-24 Thread tsuraan
Does clojure still have a concept of a namespace's exports? I'd like to be able to list, in my ns declaration, the "publicly available" functions that my module has, but I'm not seeing any way to do this. It looks like there used to be an export function, and an ns-expo