http://www.perlmonks.org?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

Replies are listed 'Best First'.
(tye)Re: references quick reference (Re: push)
by tye (Sage) on Apr 05, 2001 at 00:52 UTC

    I like the option you describe and I recall patches to implement that making it to p5p but I'm not sure whether they got accepted nor which version of Perl they will appear in.

            - tye (but my friends call me "Tye")