Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: Is it safe to append to the array you are iterating over

by SuicideJunkie (Vicar)
on Mar 14, 2013 at 17:27 UTC ( [id://1023513]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    while (@array)
    {
      $item = shift @array;
      ...
      push @array, @newstuff;
    }
    
  2. or download this
    for (my $i=0; $i< $#array; $i++)
    {
      ...
      push @array, $thing if desired();
    }
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1023513]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (7)
As of 2024-04-18 16:02 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found