From: edw...@yandex.ru
>
> The problem is that I did this benchmarking before. Actually, the code
> snippets above are run in
> a very long cycle, and if we have "foreach" statement, then we need to store
> some value for loop iteration and
> even one assignment of this variable consumes time
17.04.09, 20:16, "Jim Gibson" :
> On 4/16/09 Thu Apr 16, 2009 1:39 PM, "edw...@yandex.ru"
> scribbled:
> > Hello,
> >
> > I would like to know, how to force perl unfold "foreach" expression during
> > the
> > compilation, i.e. I want next code:
> >
> >
> > foreach (1..100) {
> > b
On Fri, Apr 17, 2009 at 12:16, Jim Gibson wrote:
> On 4/16/09 Thu Apr 16, 2009 1:39 PM, "edw...@yandex.ru"
> scribbled:
>
>> Hello,
>>
>> I would like to know, how to force perl unfold "foreach" expression during
>> the
>> compilation, i.e. I want next code:
snip
> Can you explain why you want
On 4/16/09 Thu Apr 16, 2009 1:39 PM, "edw...@yandex.ru"
scribbled:
> Hello,
>
> I would like to know, how to force perl unfold "foreach" expression during the
> compilation, i.e. I want next code:
>
>
> foreach (1..100) {
> block
> }
>
> to be compiled like this:
>
> block[$_ = 1