Re: Clojure in Issue 1 of Pragmatic Publishings Magazine

2009-07-01 Thread richard claxton
Thanks for the heads up. Michael Swaine used to be the editor of dr dobbs journal which I enjoyed reading for years. so it should be a good read. On Wed, Jul 1, 2009 at 3:40 PM, nrub p...@typosfrompaul.com wrote: For anyone that's interested check out http://www.pragprog.com/magazines It

Re: Clojure in Issue 1 of Pragmatic Publishings Magazine

2009-07-01 Thread Laurent PETIT
Hi, thanks for the pointer ! By the way, I was wondering whether error-kit can be leveraged seamlessly with concurrent programming ? For example I guess that using (vec (pmap ...) instead of (vec (map ...) will not work because the binding of the handlers will be lost. I have always been

Re: Clojure in Issue 1 of Pragmatic Publishings Magazine

2009-07-01 Thread Howard Lewis Ship
I wonder if there's a solution based on some universal meta-data to identify what is lazily evaluated, and provide hooks (functions in the meta-data) to insert handlers, such as error-kit, into the lazy evaluation. On Wed, Jul 1, 2009 at 9:29 AM, Laurent PETIT laurent.pe...@gmail.comwrote: Hi,

Re: Clojure in Issue 1 of Pragmatic Publishings Magazine

2009-07-01 Thread Laurent PETIT
2009/7/1 Howard Lewis Ship hls...@gmail.com: I wonder if there's a solution based on some universal meta-data to identify what is lazily evaluated, and provide hooks (functions in the meta-data) to insert handlers, such as error-kit, into the lazy evaluation. One general solution could be to

Re: Clojure in Issue 1 of Pragmatic Publishings Magazine

2009-07-01 Thread Robert Fischer
You're now reinventing JavaScript's object system, BTW. ~~ Robert. Laurent PETIT wrote: 2009/7/1 Howard Lewis Ship hls...@gmail.com: I wonder if there's a solution based on some universal meta-data to identify what is lazily evaluated, and provide hooks (functions in the meta-data) to