/usr/local/perl/lib/site_perl/5.8.5/Perl/Critic/Policy/Lax/ProhibitComplexMappings/LinesNotStatements.pm |
Perl::Critic::Policy::Lax::ProhibitComplexMappings::LinesNotStatements
Yes, yes, don't go nuts with map and use it to implement the complex multi-pass fnordsort algorithm. But, come on, guys! What's wrong with this:
my @localparts = map { my $addr = $_; $addr =~ s/\@.+//; $addr } @addresses;
Nothing, that's what!
The assumption behind this module is that while the above is okay, the bellow is Right Out:
my @localparts = map { my $addr = $_; $addr =~ s/\@.+//; $addr } @addresses;
Beyond the fact that it's really ugly, it's just a short step from there to a few included loop structures and then -- oops! -- a return statement. Seriously, people, they're called subroutines. We've had them since Perl 3.
Ricardo SIGNES <rjbs@cpan.org>
Adapted from BuiltinFunctions::ProhibitComplexMappings by Chris Dolan.
Copyright (c) 2006 Ricardo Signes and Chris Dolan.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
/usr/local/perl/lib/site_perl/5.8.5/Perl/Critic/Policy/Lax/ProhibitComplexMappings/LinesNotStatements.pm |