Search Results

6
votes

Clojure ‘if’ never evaluating its third argument.

Untested: (if (> 0 (. astr (indexOf (int \.)))) …
2
votes

Clojure Vector of Refs

Ok, this is pretty gross, but it works: user=> (map (fn [_] (ref nil)) (range 5)) (#<Ref@27147d: nil> #<Ref@b248c8: nil> #<Ref@c86116: nil> #<Ref@5e06ef: nil …