Re: Function Size

2010-05-30 Thread jbs
kground in Java.  After writing > > Clojure code for a month or so now, I find myself struggling with > > function size.  If I have expressions that can be grouped by > > association, then I can re-factor these expression(s) into a > > function.  However, the newly re-factored f

Re: Function Size

2010-05-30 Thread Craig Andera
. On Sunday, May 30, 2010, jbs wrote: > I'm new to Clojure and have a long background in Java.  After writing > Clojure code for a month or so now, I find myself struggling with > function size.  If I have expressions that can be grouped by > association, then I can re-factor

Re: Function Size

2010-05-30 Thread Stuart Halloway
idiomatic for introducing a private var. You can also do this with explicit {:private true} metadata on the name. Cheers, Stu > I'm new to Clojure and have a long background in Java. After writing > Clojure code for a month or so now, I find myself struggling with > function size.

Function Size

2010-05-30 Thread jbs
I'm new to Clojure and have a long background in Java. After writing Clojure code for a month or so now, I find myself struggling with function size. If I have expressions that can be grouped by association, then I can re-factor these expression(s) into a function. However, the new