Re: Regarding http://clojuredocs.org

2013-10-10 Thread Stefan du Fresne
Agree. I find the examples on clojuredocs really helpful (I find the official documentation often near-impenetrable), but it's super confusing how it references a bunch of old things. On Thursday, 10 October 2013 20:20:58 UTC+13, binita wrote: > > Yes , agree with puzzler . > Also the Search fe

Re: function creation, partial or #()

2013-08-14 Thread Stefan du Fresne
So I'm new to Clojure, and have been working through how to make Clojure code performant (i.e. what approaches are faster than others, how to profile, etc) by writing a (embarrassingly) simple ray-tracer. In a ray tracer there is a tight loop that runs per pixel, where you determine which of a

Re: [Proposal] Simplified 'ns' declaration

2013-08-05 Thread Stefan du Fresne
Just a note: my understanding was that even in Java-land using import * is not recommended. I've done professional Java development since 2006 and in that time I don't think I've ever used import *. I've certainly seen it *in *production code, but I've never felt the need to use it myself. On T