Dear monks,
I just had a look at the function first in the Module List::Util and found the following code:
sub first (&@) {
my $code = shift;
foreach (@_) {
return $_ if &{$code}();
}
undef; # <====== BUG?
}
In my eyes, the undef; should be replaced by a plain return; to prevent getting a (true!) list with one value (of undef), which in scalar context is true, e.g.
D:\workspace> perl
D:\eclipse\workspace\BDC\lib> perl
use strict;
use warnings;
use Data::Dumper;
use List::Util;
my @list = 1..20;
my @first = List::Util::first { $_ == 21 } @list;
print Dumper( \@first );
if( @first ) {
print "In scalar-context: true\n";
}
^D
$VAR1 = [
undef
];
In scalar-context: true
D:\workspace>perl -MList::Util -le "print $List::Util::VERSION"
1.19
Well, in the POD it is clearly stated that the first element is returned or undef - if not found. But since the syntax looks very similar to map and grep and the like, it might cause trouble without need if someone uses a list instead of a scalar to accept the result.
What do you think about?
Best regards,
perl -e "s>>*F>e=>y)\*martinF)stronat)=>print,print v8.8.8.32.11.32"
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
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, 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, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
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.
|
|