← Index
NYTProf Performance Profile   « line view »
For ./view
  Run on Fri Jul 31 18:42:36 2015
Reported on Fri Jul 31 18:48:13 2015

Filename/usr/lib64/perl5/vendor_perl/List/Util.pm
StatementsExecuted 11 statements in 546µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11120µs43µsList::Util::::BEGIN@11List::Util::BEGIN@11
0000s0sList::Util::::sum0List::Util::sum0
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
112198µs265µs
# spent 43µs (20+22) within List::Util::BEGIN@11 which was called: # once (20µs+22µs) by Error::BEGIN@46 at line 11
use strict;
# spent 43µs making 1 call to List::Util::BEGIN@11 # spent 22µs making 1 call to strict::import
121900nsrequire Exporter;
13
14110µsour @ISA = qw(Exporter);
1513µsour @EXPORT_OK = qw(first min max minstr maxstr reduce sum sum0 shuffle);
161500nsour $VERSION = "1.27";
171500nsour $XS_VERSION = $VERSION;
18130µs$VERSION = eval $VERSION;
# spent 4µs executing statements in string eval
19
201600nsrequire XSLoader;
211291µs1279µsXSLoader::load('List::Util', $XS_VERSION);
# spent 279µs making 1 call to XSLoader::load
22
23sub sum0
24{
25 return 0 unless @_;
26 goto &sum;
27}
28
29111µs1;
30
31__END__