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]};
In reply to Re: Shifting of 2D array slices
by moritz
in thread Shifting of 2D array slices
by Ryuchi
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |