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-arraysI'd point explicitly out that there is a difference between taking a reference and copying the data within the array:
This is something that remains somewhat "implicit" in your answer, e.g. when you talk about how to copy an entire array-of-arrays.# 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]
Flavio
perl -ple'$_=reverse' <<<ti.xittelop@oivalf
|
|---|