in reply to Re^2: multiple array processing
in thread multiple array processing

The structure you seem to be heading toward is something like this:
my @AoA = ([ra_1=> \@ra_1], [ra2=>\@ra_2], [ra3=>\@ra_3], [ra4=>\@ra_ +4]); # Fat comma's used for readability
This allows you to sort by Size, then name..
my @AoA_sorted_by_size_Then_Name = sort {@{$a->[1]} <=> @{$b->[1]} || $a->[0] cmp $b->[0]} @AoA;
*UNTETSED*

        "You're only given one little spark of madness. You mustn't lose it."         - Robin Williams

Replies are listed 'Best First'.
Re^4: multiple array processing
by f77coder (Beadle) on Sep 06, 2014 at 23:25 UTC

    Excellent, thank you.