How to invoke StaticMethodExpr.eval?

2017-02-04 Thread Jiacai Liu
I am following this series to learn how clojure compiler works. I tried to invoke eval method of StaticMethodExpr using below codes (ns clojure.lang (:use clojure.core) (:import [clojure.lang Compiler Compiler$C]))

[ANN] lambdaroyal-memory: STM-based in-memory database storing persistent data structures

2017-02-04 Thread gixxi
Hi all, I hereby announce the availability of the lambdaroyal-memory. A STM-based in-memory database flushing to a persistent backend. https://github.com/gixxi/lambdaroyal-memory Just imaging working just with STM refs holding your domain data and ease your daily job with - indexes - fo

Re: Clojure.spec, maps, restrict valid keywords, easier way?

2017-02-04 Thread Dave Tenny
I have found eastwood to be useful for a number of things, however on keyword checking it failed terribly on our code base, though perhaps there have been updates since I last tried it. Thanks for the suggestion though. On Friday, February 3, 2017 at 7:26:01 PM UTC-5, Ben Brinckerhoff wrote: >

Re: Clojure.spec, maps, restrict valid keywords, easier way?

2017-02-04 Thread Colin Fleming
I'm actually planning to do exactly that in Cursive, and it's more or less what Eastwood does too per the link Ben posted. On 4 February 2017 at 14:23, Linus Ericsson wrote: > It would be great if an editor highlighted a (possibly qualified) keyword > that was used only in that particular place