in reply to Re: A "harmless" alternative to 'map{}'?
in thread A "harmless" alternative to 'map{}'?

I think this has to do with the optimization of the .. operator when fed into a loop. It is handled differently so that things like
for (1..1000000) {...}
won't build a million element array before starting the loop.

--

flounder