Just for curiosity, I tried
Algorithm::Loops as well. The results seem to indicate that if you want to go for readability you'd better use it, if you really need speed it's better to roll your own. Bewaring of the pitfalls.
#!/usr/bin/perl -w
use strict;
my @elem = (0..100_000);
use Benchmark ':all';
use Algorithm::Loops 'Filter';
cmpthese ( 100, {
'mapn' => sub { my @e = @elem; @e = map { $_ if (s/0/./g || 1) } @e
+ },
'for ' => sub { my @e = @elem; for (@e) { s/0/./g } },
'mapc' => sub { my @e = map { $_ if (s/0/./g || 1) } @elem },
'Filter' => sub { my @e = Filter { s/^\s+// } @elem },
});
__END__
~/sviluppo/perl> ./loops.pl
Rate Filter mapn mapc for
Filter 4.00/s -- -1% -39% -53%
mapn 4.06/s 1% -- -38% -52%
mapc 6.57/s 64% 62% -- -23%
for 8.54/s 113% 110% 30% --
Indeed, the implementation of Filter resembles that of for, but its generality has two drawbacks:
- There are two copies, one entering the function and one upon exit
- the provided subroutine reference gets called, wich IMHO should trigger some penalty.
Just my 2c.
Flavio (perl -e 'print(scalar(reverse("\nti.xittelop\@oivalf")))')
Don't fool yourself.
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.