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


in reply to Re: array or array ref as variable
in thread array or array ref as variable

Or, more idiomatically:
my @everything = (\@fw, \@vlan, \@vrf, \@more); foreach (@everything) { theSub(@$_); }
(or:  theSub($_); depending on your usage).

Replies are listed 'Best First'.
Re^3: array or array ref as variable
by Lawliet (Curate) on Jun 28, 2013 at 11:08 UTC

    How is that more idiomatic? for and foreach are synonyms.

    Perhaps the use of $_ instead of the named variable is what you're referring to, but I am not convinced that that is more idiomatic.

      That's right. I meant the use of $_