← 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:12 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/Bool/not.pm
StatementsExecuted 14 statements in 807µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11185µs103µsMoose::Meta::Method::Accessor::Native::Bool::not::::BEGIN@3Moose::Meta::Method::Accessor::Native::Bool::not::BEGIN@3
11142µs14.8msMoose::Meta::Method::Accessor::Native::Bool::not::::BEGIN@10Moose::Meta::Method::Accessor::Native::Bool::not::BEGIN@10
11138µs107µsMoose::Meta::Method::Accessor::Native::Bool::not::::BEGIN@4Moose::Meta::Method::Accessor::Native::Bool::not::BEGIN@4
0000s0sMoose::Meta::Method::Accessor::Native::Bool::not::::_maximum_argumentsMoose::Meta::Method::Accessor::Native::Bool::not::_maximum_arguments
0000s0sMoose::Meta::Method::Accessor::Native::Bool::not::::_return_valueMoose::Meta::Method::Accessor::Native::Bool::not::_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::Bool::not;
2
33100µs2122µs
# spent 103µs (85+18) within Moose::Meta::Method::Accessor::Native::Bool::not::BEGIN@3 which was called: # once (85µs+18µs) by Moose::Meta::Attribute::Native::Trait::Bool::BEGIN@8 at line 3
use strict;
# spent 103µs making 1 call to Moose::Meta::Method::Accessor::Native::Bool::not::BEGIN@3 # spent 18µs making 1 call to strict::import
43221µs2175µs
# spent 107µs (38+68) within Moose::Meta::Method::Accessor::Native::Bool::not::BEGIN@4 which was called: # once (38µs+68µs) by Moose::Meta::Attribute::Native::Trait::Bool::BEGIN@8 at line 4
use warnings;
# spent 107µs making 1 call to Moose::Meta::Method::Accessor::Native::Bool::not::BEGIN@4 # spent 68µs making 1 call to warnings::import
5
614µsour $VERSION = '1.19';
7172µs$VERSION = eval $VERSION;
# spent 12µs executing statements in string eval
813µsour $AUTHORITY = 'cpan:STEVAN';
9
103349µs229.6ms
# spent 14.8ms (42µs+14.8) within Moose::Meta::Method::Accessor::Native::Bool::not::BEGIN@10 which was called: # once (42µs+14.8ms) by Moose::Meta::Attribute::Native::Trait::Bool::BEGIN@8 at line 10
use Moose::Role;
11
12134µs119.5mswith 'Moose::Meta::Method::Accessor::Native::Reader' =>
# spent 19.5ms making 1 call to Moose::Role::with
13 { -excludes => ['_maximum_arguments'] };
14
15sub _maximum_arguments { 0 }
16
17sub _return_value {
18 my ( $self, $slot_access ) = @_;
19
20 return "! $slot_access";
21}
22
23124µs1;