This seems like reason nr 128 in the series for passing args to subs as references to data structures rather than the structures themselves. In this case an arrayref.
Then you can use the high precedence (logical) Or,
||. Critically, this has higher precedence than
=. So
$dinner = $ham || $eggs;
means
dinner is ham or, if we've got no ham, eggs. As opposed to
$dinner = $ham or get('takeaway');
which means
dinner is ham, but if we fail to make dinner from ham, we're gonna send out.
As other monks remark,
|| forces scalar context on the LH operand, so if you pass a three-element array, you'd get '3'. But with an arrayref you're already in scalar context so you don't care.
The only disadvantage is, you don't use
@_ explicitly. This is a disadvantage because that was what your question was about!
use strict;
use Data::Dumper;
my %lexicon = (
foo => 'boink',
bar => 'blink',
baz => 'squirm',
);
sub
grop
{
my $lexlist = shift || [sort keys %lexicon];
print Dumper($lexlist);
}
grop(['gump','snoop','grock']);
grop();
Which produces
$VAR1 = [
'gump',
'snoop',
'grock'
];
$VAR1 = [
'bar',
'baz',
'foo'
];
§
George Sherston
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.