http://www.perlmonks.org?node_id=528951


in reply to Re: merging two hashes
in thread merging two hashes

If you're not going to sort the keys, you can just use values
my @a = map @{$_->{1}}, values %$s;

Caution: Contents may have been coded under pressure.