Filename | /home/ss5/perl5/perlbrew/perls/perl-5.14.1/lib/5.14.1/x86_64-linux-thread-multi/List/Util.pm |
Statements | Executed 11 statements in 1.33ms |
Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
---|---|---|---|---|---|
1 | 1 | 1 | 56µs | 69µs | BEGIN@11 | List::Util::
Line | State ments |
Time on line |
Calls | Time in subs |
Code |
---|---|---|---|---|---|
1 | # List::Util.pm | ||||
2 | # | ||||
3 | # Copyright (c) 1997-2009 Graham Barr <gbarr@pobox.com>. All rights reserved. | ||||
4 | # This program is free software; you can redistribute it and/or | ||||
5 | # modify it under the same terms as Perl itself. | ||||
6 | # | ||||
7 | # This module is normally only loaded if the XS module is not available | ||||
8 | |||||
9 | package List::Util; | ||||
10 | |||||
11 | 2 | 357µs | 2 | 82µs | # spent 69µs (56+13) within List::Util::BEGIN@11 which was called:
# once (56µs+13µs) by Test::Deep::Cache::Simple::BEGIN@7 at line 11 # spent 69µs making 1 call to List::Util::BEGIN@11
# spent 13µs making 1 call to strict::import |
12 | 1 | 1µs | require Exporter; | ||
13 | |||||
14 | 1 | 29µs | our @ISA = qw(Exporter); | ||
15 | 1 | 11µs | our @EXPORT_OK = qw(first min max minstr maxstr reduce sum shuffle); | ||
16 | 1 | 2µs | our $VERSION = "1.25"; | ||
17 | 1 | 2µs | our $XS_VERSION = $VERSION; | ||
18 | 1 | 58µs | $VERSION = eval $VERSION; # spent 10µs executing statements in string eval | ||
19 | |||||
20 | 1 | 2µs | require XSLoader; | ||
21 | 1 | 841µs | 1 | 808µs | XSLoader::load('List::Util', $XS_VERSION); # spent 808µs making 1 call to XSLoader::load |
22 | |||||
23 | 1 | 31µs | 1; | ||
24 | |||||
25 | __END__ |