http://www.perlmonks.org?node_id=743951


in reply to Re^2: How foreach loops decide what to iterate through
in thread How foreach loops decide what to iterate through

Essentially what you are doing is something like this:

my @a = (1); for ( my $i = 0 ; $i <= $#a ; $i++ ) { push( @a, 1 ); }

So the loop isn't being restarted or re-evaluated, but because you are extending the thing it's iterating over, it never gets to the end.


www.jasonkohles.com
We're not surrounded, we're in a target-rich environment!

Replies are listed 'Best First'.
Re^4: How foreach loops decide what to iterate through
by jvector (Friar) on Feb 15, 2009 at 22:38 UTC
    The insight moment for me in this thread was getting when it is that an anonymous array is created and used (and therefore the loop is unaffected by modifications to the original array during its execution) as opposed to the original array itself being used during the loop.

    Note to self: check copy of PBP to see if this is mentioned.


    Find "This signature" for less on Ebay

      an anonymous array is created and used

      An anonymous list, not an anonymous array. (Well, all lists are anonymous.) No array is created.

      Arguments and return values of functions and subs are placed on the stack as a list of scalars.