← Index
NYTProf Performance Profile   « block view • line view • sub view »
For -e
  Run on Wed Nov 17 21:45:08 2010
Reported on Wed Nov 17 22:14:39 2010

Filename/home/doy/perl5/perlbrew/perls/perl-5.10.1/lib/site_perl/5.10.1/List/AllUtils.pm
StatementsExecuted 18 statements in 968µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
111114µs180µsList::AllUtils::::BEGIN@4List::AllUtils::BEGIN@4
11177µs315µsList::AllUtils::::BEGIN@16List::AllUtils::BEGIN@16
11168µs84µsList::AllUtils::::BEGIN@3List::AllUtils::BEGIN@3
11141µs1.69msList::AllUtils::::BEGIN@14List::AllUtils::BEGIN@14
11141µs419µsList::AllUtils::::BEGIN@10List::AllUtils::BEGIN@10
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package List::AllUtils;
2
33177µs2101µs
# spent 84µs (68+17) within List::AllUtils::BEGIN@3 which was called: # once (68µs+17µs) by Markdent::Regexes::BEGIN@9 at line 3
use strict;
# spent 84µs making 1 call to List::AllUtils::BEGIN@3 # spent 17µs making 1 call to strict::import
43209µs2247µs
# spent 180µs (114+66) within List::AllUtils::BEGIN@4 which was called: # once (114µs+66µs) by Markdent::Regexes::BEGIN@9 at line 4
use warnings;
# spent 180µs making 1 call to List::AllUtils::BEGIN@4 # spent 66µs making 1 call to warnings::import
5
614µsour $VERSION = '0.02';
7
8# List::Util does not define an :all tag
9BEGIN
10
# spent 419µs (41+378) within List::AllUtils::BEGIN@10 which was called: # once (41µs+378µs) by Markdent::Regexes::BEGIN@9 at line 13
{
1113µs require List::Util;
12127µs1378µs List::Util->import( @List::Util::EXPORT_OK );
# spent 378µs making 1 call to Exporter::import
131112µs1419µs}
# spent 419µs making 1 call to List::AllUtils::BEGIN@10
143168µs23.33ms
# spent 1.69ms (41µs+1.65) within List::AllUtils::BEGIN@14 which was called: # once (41µs+1.65ms) by Markdent::Regexes::BEGIN@9 at line 14
use List::MoreUtils qw( :all );
# spent 1.69ms making 1 call to List::AllUtils::BEGIN@14 # spent 1.65ms making 1 call to Exporter::import
15
163216µs2554µs
# spent 315µs (77+238) within List::AllUtils::BEGIN@16 which was called: # once (77µs+238µs) by Markdent::Regexes::BEGIN@9 at line 16
use base 'Exporter';
# spent 315µs making 1 call to List::AllUtils::BEGIN@16 # spent 238µs making 1 call to base::import
17
18129µsour @EXPORT_OK = ( @List::Util::EXPORT_OK, @List::MoreUtils::EXPORT_OK );
19
2016µsour %EXPORT_TAGS = ( all => \@EXPORT_OK );
21
22
23117µs1;
24
25__END__