in reply to Preserve array contents in for() loop
for my $b (my@c = @a) {
In other words, make a copy. However, if you want complete safety, you will need to make a deep copy, not the shallow copy in my example. Storable has a dclone() method, which may be of use.
------
We are the carpenters and bricklayers of the Information Age.
Then there are Damian modules.... *sigh* ... that's not about being less-lazy -- that's about being on some really good drugs -- you know, there is no spoon. - flyingmoose
I shouldn't have to say this, but any code, unless otherwise stated, is untested
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: Preserve array contents in for() loop
by dda (Friar) on Sep 21, 2004 at 13:06 UTC | |
by dragonchild (Archbishop) on Sep 21, 2004 at 13:53 UTC |