Ancient

 view release on metacpan or  search on metacpan

bench/any.pl  view on Meta::CPAN

#!/usr/bin/env perl
use strict;
use warnings;
use Benchmark qw(cmpthese);
use lib 'blib/lib', 'blib/arch';
use List::Util ();
use util qw(any);

print "=" x 60, "\n";
print "any - Any Match Benchmark\n";
print "=" x 60, "\n\n";

my @numbers = 1..1000;

print "=== Match in middle ===\n";
cmpthese(-2, {
    'util::any'       => sub { any(sub { $_ > 500 }, \@numbers) },
    'List::Util::any' => sub { List::Util::any { $_ > 500 } @numbers },
});

print "\n=== Early match ===\n";
cmpthese(-2, {
    'util::any'       => sub { any(sub { $_ > 10 }, \@numbers) },
    'List::Util::any' => sub { List::Util::any { $_ > 10 } @numbers },
});

print "\n=== No match ===\n";
cmpthese(-2, {
    'util::any'       => sub { any(sub { $_ > 2000 }, \@numbers) },
    'List::Util::any' => sub { List::Util::any { $_ > 2000 } @numbers },
});

print "\nDONE\n";



( run in 1.035 second using v1.01-cache-2.11-cpan-cdf2f3d4e48 )