← 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:12:45 2010

Filename/home/doy/perl5/perlbrew/perls/perl-5.10.1/lib/site_perl/5.10.1/x86_64-linux/Moose/Meta/Method/Accessor/Native/Array/shuffle.pm
StatementsExecuted 20 statements in 1.17ms
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11180µs98µsMoose::Meta::Method::Accessor::Native::Array::shuffle::::BEGIN@3Moose::Meta::Method::Accessor::Native::Array::shuffle::BEGIN@3
11150µs127µsMoose::Meta::Method::Accessor::Native::Array::shuffle::::BEGIN@4Moose::Meta::Method::Accessor::Native::Array::shuffle::BEGIN@4
11148µs821µsMoose::Meta::Method::Accessor::Native::Array::shuffle::::BEGIN@26Moose::Meta::Method::Accessor::Native::Array::shuffle::BEGIN@26
11144µs14.7msMoose::Meta::Method::Accessor::Native::Array::shuffle::::BEGIN@12Moose::Meta::Method::Accessor::Native::Array::shuffle::BEGIN@12
11122µs22µsMoose::Meta::Method::Accessor::Native::Array::shuffle::::BEGIN@6Moose::Meta::Method::Accessor::Native::Array::shuffle::BEGIN@6
0000s0sMoose::Meta::Method::Accessor::Native::Array::shuffle::::_maximum_argumentsMoose::Meta::Method::Accessor::Native::Array::shuffle::_maximum_arguments
0000s0sMoose::Meta::Method::Accessor::Native::Array::shuffle::::_return_valueMoose::Meta::Method::Accessor::Native::Array::shuffle::_return_value
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package Moose::Meta::Method::Accessor::Native::Array::shuffle;
2
33121µs2117µs
# spent 98µs (80+18) within Moose::Meta::Method::Accessor::Native::Array::shuffle::BEGIN@3 which was called: # once (80µs+18µs) by Moose::Meta::Attribute::Native::Trait::Array::BEGIN@27 at line 3
use strict;
# spent 98µs making 1 call to Moose::Meta::Method::Accessor::Native::Array::shuffle::BEGIN@3 # spent 18µs making 1 call to strict::import
43132µs2204µs
# spent 127µs (50+77) within Moose::Meta::Method::Accessor::Native::Array::shuffle::BEGIN@4 which was called: # once (50µs+77µs) by Moose::Meta::Attribute::Native::Trait::Array::BEGIN@27 at line 4
use warnings;
# spent 127µs making 1 call to Moose::Meta::Method::Accessor::Native::Array::shuffle::BEGIN@4 # spent 77µs making 1 call to warnings::import
5
63242µs122µs
# spent 22µs within Moose::Meta::Method::Accessor::Native::Array::shuffle::BEGIN@6 which was called: # once (22µs+0s) by Moose::Meta::Attribute::Native::Trait::Array::BEGIN@27 at line 6
use List::Util ();
7
814µsour $VERSION = '1.19';
9183µs$VERSION = eval $VERSION;
# spent 10µs executing statements in string eval
1013µsour $AUTHORITY = 'cpan:STEVAN';
11
123398µs229.4ms
# spent 14.7ms (44µs+14.7) within Moose::Meta::Method::Accessor::Native::Array::shuffle::BEGIN@12 which was called: # once (44µs+14.7ms) by Moose::Meta::Attribute::Native::Trait::Array::BEGIN@27 at line 12
use Moose::Role;
13
14130µs119.9mswith 'Moose::Meta::Method::Accessor::Native::Reader' =>
# spent 19.9ms making 1 call to Moose::Role::with
15 { -excludes => ['_maximum_arguments'] };
16
17sub _maximum_arguments { 0 }
18
19sub _return_value {
20 my $self = shift;
21 my $slot_access = shift;
22
23 return "List::Util::shuffle \@{ ($slot_access) }";
24}
25
263117µs21.59ms
# spent 821µs (48+773) within Moose::Meta::Method::Accessor::Native::Array::shuffle::BEGIN@26 which was called: # once (48µs+773µs) by Moose::Meta::Attribute::Native::Trait::Array::BEGIN@27 at line 26
no Moose::Role;
27
28145µs1;