in reply to How do I reverse an array of arrays?

First, there's no array of arrays. The closest Perl has is an array of arrayrefs.

Second, "reverse" along what axis? The top level is simple:

@reversed = reverse @array;

The second level is also pretty easy:

@second_level_reversed = map [reverse @$_], @array;
And you can add a reverse ahead of map to do them both.