From: Francogrex on
Dears, I tried to contact someone who maintains the "Iterate" system
but didn't get any feedback. I hope someone might take it up and find
a fix to the following bug in iterate (which by the way is very good
and I like to use it):
example:
(loop for i in '(1 2 3 4) collect (count i '(2 2 4 5 4 3))) OK
(iter (for i in '(1 2 3 4)) (collect (count i '(2 2 4 5 4 3)))) NOT-OK
From: Chris Riesbeck on
Francogrex wrote:
> Dears, I tried to contact someone who maintains the "Iterate" system
> but didn't get any feedback. I hope someone might take it up and find
> a fix to the following bug in iterate (which by the way is very good
> and I like to use it):
> example:
> (loop for i in '(1 2 3 4) collect (count i '(2 2 4 5 4 3))) OK
> (iter (for i in '(1 2 3 4)) (collect (count i '(2 2 4 5 4 3)))) NOT-OK

As a quick hack, you could do

(remprop 'count 'iter::synonym)

so that COUNT is no longer a synonym for COUNTING.