Skip to content

Instantly share code, notes, and snippets.

@mpapec
Created June 4, 2016 04:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mpapec/ecadd07d8576a2c5a961d3431cfc47c6 to your computer and use it in GitHub Desktop.
Save mpapec/ecadd07d8576a2c5a961d3431cfc47c6 to your computer and use it in GitHub Desktop.
perl -Mstrict -wE'
use Benchmark qw(:all);
my $method = "AUTOLOAD";
cmpthese(-1, {
matchAll => sub {
$method =~ /^[A-Z_]+$/;
},
matchOne => sub {
$method !~ /[a-z]/;
},
});
'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment