Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re^2: Questions about using array-of-arrays

by polettix (Vicar)
on Jul 26, 2007 at 13:04 UTC ( [id://628917]=note: print w/replies, xml ) Need Help??


in reply to Re: Questions about using array-of-arrays
in thread Questions about using array-of-arrays

copy my separate array into a row of my array-of-arrays
I'd point explicitly out that there is a difference between taking a reference and copying the data within the array:
# Here, changes in @SeparateArray will be "seen" in # $MyAoA[$i] too $MyAoA[$i] = \@SeparateArray; pop @SeparateArray; # $MyAoA[$i] affected, too # Here, $MyAoA[$i] and @SeparateArray are somewhat # independent, even if they may share common elements $MyAoA[$i] = [ @SeparateArray ]; pop @SeparateArray; # no change to $MyAoA[$i]
This is something that remains somewhat "implicit" in your answer, e.g. when you talk about how to copy an entire array-of-arrays.

Flavio
perl -ple'$_=reverse' <<<ti.xittelop@oivalf

Don't fool yourself.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (3)
As of 2024-04-26 08:17 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found