Re: Cyclic namespace dependencies!

2016-12-31 Thread squeegee
On Friday, December 30, 2016 at 8:59:46 PM UTC-5, puzzler wrote: > > On Fri, Dec 30, 2016 at 4:55 PM, Timothy Baldridge > wrote: > >> I can see that, and even spec has this use case. In Spec it's solved by >> having both A and B in one namespace and using declare to forward-declare >> the cons

What does the ref *loaded-libs* do?

2018-02-05 Thread squeegee
It is there to support the “:reload” and “:reload-all” features of “require” and to help separate the concern of loading libs from the concern of tracking namespaces. --Steve -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, se

Re: Why does interruptible-eval from tools.nrepl queue evaluations?

2018-05-02 Thread squeegee
I suspect it's because queuing up operations is a relatively safe increment in convenience over the most naive implementation: having to wait for each evaluation to complete before submitting the next. Attempting to increasing the convenience further by evaluating expressions in parallel incur