← Index
NYTProf Performance Profile   « block view • line view • sub view »
For t/app_dpath.t
  Run on Tue Jun 5 15:25:28 2012
Reported on Tue Jun 5 15:26:04 2012

Filename/home/ss5/perl5/perlbrew/perls/perl-5.14.1/lib/5.14.1/x86_64-linux-thread-multi/List/Util.pm
StatementsExecuted 11 statements in 1.33ms
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11156µs69µsList::Util::::BEGIN@11List::Util::BEGIN@11
Call graph for these subroutines as a Graphviz dot language file.
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
9package List::Util;
10
112357µs282µ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
use strict;
# spent 69µs making 1 call to List::Util::BEGIN@11 # spent 13µs making 1 call to strict::import
1211µsrequire Exporter;
13
14129µsour @ISA = qw(Exporter);
15111µsour @EXPORT_OK = qw(first min max minstr maxstr reduce sum shuffle);
1612µsour $VERSION = "1.25";
1712µsour $XS_VERSION = $VERSION;
18158µs$VERSION = eval $VERSION;
# spent 10µs executing statements in string eval
19
2012µsrequire XSLoader;
211841µs1808µsXSLoader::load('List::Util', $XS_VERSION);
# spent 808µs making 1 call to XSLoader::load
22
23131µs1;
24
25__END__