http://qs321.pair.com?node_id=69199


in reply to references quick reference (Re: push)
in thread push

And if I want to ref the entire hash/array (as in a foreach loop) what's the syntax?
foreach my $array_elem ( @{ $href->{$key} } ) {
works (I hope) but shouldn't there be a:
foreach my $array_elem ( $href->{$key}->@ ) {
sort of way to do this?

a