in reply to Shifting of 2D array slices
For example:
my @row = $bigarray[$count];
doesn't do what you want. Since $bigarry[$count] returns an arrayref, @row will contain only one value (that is, the reference). You'll probably want this instead:
my @row = @{$bigarray[$count]};
|
|---|