Re: LazyMap and why Delegation is powerful

2008-10-27 Thread Phil Jordan
Meikel Brandmeyer wrote: > Am 25.10.2008 um 15:49 schrieb Phil Jordan: >> I tried both the release jar and building my own from hg (by the way, >> your Makefile fails on GNU Make on Linux, as far as I can tell it's >> because you're using .for) and they suffer from the same problem. > Obviously th

Re: LazyMap and why Delegation is powerful

2008-10-25 Thread Meikel Brandmeyer
Hello Phil, Am 25.10.2008 um 15:49 schrieb Phil Jordan: I wanted to try your lazy map implementation just now and hit a snag. As I understand it, I should be able to load the library by adding the jar file to the classpath and using user=> (require 'de.kotka.lazymap) however, that gives m

Re: LazyMap and why Delegation is powerful

2008-10-25 Thread Phil Jordan
Hi Meikel, Meikel Brandmeyer wrote: > Dear Clojurians, > >> I'd like to announce LazyMap2. LazyMap is to the map types, what >> lazy-cons is to sequences. > And obviously it is broken, because LazyMapSeq implements only ISeq and > not Sequential. The fix is already in the Mercurial repository. >

Re: LazyMap and why Delegation is powerful

2008-09-26 Thread Meikel Brandmeyer
Dear Clojurians, I'd like to announce LazyMap2. LazyMap is to the map types, what lazy-cons is to sequences. And obviously it is broken, because LazyMapSeq implements only ISeq and not Sequential. The fix is already in the Mercurial repository. Sorry for the invovenience. Sincerely Meikel

LazyMap and why Delegation is powerful

2008-09-24 Thread Meikel Brandmeyer
Dear Clojurians, I'd like to announce LazyMap2. LazyMap is to the map types, what lazy-cons is to sequences. - One may associate a value to a key in a lazy map by means of the lazy-assoc macro and the value does not get evaluated until it is accessed for the first time. - One can turn the l