Re: Vars named **

2016-06-05 Thread Fluid Dynamics
On Saturday, June 4, 2016 at 6:29:00 PM UTC-4, Alex Miller wrote: > > This was fixed in http://dev.clojure.org/jira/browse/CLJ-1233 way back in > Clojure 1.6. > That would mean that the current version of clooj (0.4.4) is still using Clojure 1.5?! Or is there a newer version of clooj that

Final CFP: 4th ACM SIGPLAN International Workshop on Functional Art, Music, Modelling and Design

2016-06-05 Thread Michael Sperber
4th ACM SIGPLAN International Workshop on Functional Art, Music, Modelling and Design http://functional-art.org/2016/ Co-located with ICFP Nara, Japan, 24 September, 2016 Key Dates: Submission deadline - June 24 Author Notification - 15 July Camera Ready- 31 July Workshop-

Re: clojure.spec & protocol fn

2016-06-05 Thread Kevin Downey
http://dev.clojure.org/jira/browse/CLJ-1941 has some discussion about places where instrumenting won't work. On 06/05/2016 09:57 AM, Claudius Nicolae wrote: > It seems that protocol fns don't participate in s/fdef specfications. It > would be nice they were. Sample: > > (ns sample >

clojure.spec & protocol fn

2016-06-05 Thread Claudius Nicolae
It seems that protocol fns don't participate in s/fdef specfications. It would be nice they were. Sample: (ns sample (:require [clojure.spec :as s])) (s/instrument-all) ;; Spec a fn (s/fdef f :args (s/cat :i integer?) :ret integer?) (defn