My favorite way to deal with nested structures:
use Data::Alias; ... alias my @rows = @{ $data }; for my $row (@rows) { alias my @col = @{ $row }; for my $col (@col) { print $col,"\n"; }; };
In reply to Re: Dereferencing an arrayref of arrayrefs
by molecules
in thread Dereferencing an arrayref of arrayrefs
by manna45
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |