in reply to Re: Creating a Dynamic Nested Loops for HoA
in thread Creating a Dynamic Nested Loops for HoA

If you are tied to having the starting HoA, you can get to the AoA suggestions by:
my $aoa; @$aoa = map {$hash->{$_}} sort keys %$hash;
Assumes the sort of the keys is the order you want.