-
Notifications
You must be signed in to change notification settings - Fork 7
perlpilot/benchmark
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
=head1 Name
Benchmark.pm6
=head1 Synopsis
use v6;
use Benchmark;
my ($start,$end,$diff,$avg) = timethis(1000, "code");
my @stats = timethis(1000, sub { #`( code ) });
say ~@stats;
my %results = timethese(1000, {
"foo" => sub { ... },
"bar" => sub { ... },
});
say ~%results;
=head1 Description
A simple benchmarking module with an interface similar to Perl 5's
Benchmark.pm. However, rather than output results to $*OUT, the results
are merely returned so that you can output them however you please.
=head1 Author
Jonathan Scott Duff <[email protected]>
About
Simple Perl 6 version of Benchmark.pm
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published
Languages
- Other 100.0%