- or download this
foreach $key(keys %h)
{
push(@arr,$h{$key});
}
- or download this
push @arr, values %h;
- or download this
push @arr, map @$_, values %h;
- or download this
push @arr, map %$_, values %h;
- or download this
push @arr, map ref() eq 'ARRAY' ? @$_ : ref() eq 'HASH' ? %$_ : $_, va
+lues %h;