← Index
NYTProf Performance Profile   « block view • line view • sub view »
For 05.Domain_and_Item.t
  Run on Tue May 4 17:21:41 2010
Reported on Tue May 4 17:22:21 2010

File /usr/local/lib/perl5/site_perl/5.10.1/MooseX/AttributeHelpers/Collection/Hash.pm
Statements Executed 13
Statement Execution Time 170µs
Subroutines — ordered by exclusive time
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11116µs2.41msMooseX::AttributeHelpers::Collection::Hash::::BEGIN@3 MooseX::AttributeHelpers::Collection::Hash::BEGIN@3
1118µs107µsMooseX::AttributeHelpers::Collection::Hash::::BEGIN@12 MooseX::AttributeHelpers::Collection::Hash::BEGIN@12
1112µs2µsMoose::Meta::Attribute::Custom::Collection::Hash::::register_implementationMoose::Meta::Attribute::Custom::Collection::Hash::register_implementation
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1
2package MooseX::AttributeHelpers::Collection::Hash;
3368µs24.80ms
# spent 2.41ms (16µs+2.39) within MooseX::AttributeHelpers::Collection::Hash::BEGIN@3 which was called # once (16µs+2.39ms) by MooseX::AttributeHelpers::BEGIN@29 at line 3
use Moose;
4
51600nsour $VERSION = '0.23';
6115µs$VERSION = eval $VERSION;
71300nsour $AUTHORITY = 'cpan:STEVAN';
8
912µs1377µsextends 'Moose::Meta::Attribute';
# spent 377µs making 1 call to Moose::extends
1012µs18.31mswith 'MooseX::AttributeHelpers::Trait::Collection::Hash';
# spent 8.31ms making 1 call to Moose::with
11
12361µs2206µs
# spent 107µs (8+99) within MooseX::AttributeHelpers::Collection::Hash::BEGIN@12 which was called # once (8µs+99µs) by MooseX::AttributeHelpers::BEGIN@29 at line 12
no Moose;
13
14# register the alias ...
15package # hide me from search.cpan.org
16 Moose::Meta::Attribute::Custom::Collection::Hash;
1713µs
# spent 2µs within Moose::Meta::Attribute::Custom::Collection::Hash::register_implementation which was called # once (2µs+0s) by Moose::Util::resolve_metaclass_alias at line 192 of Moose/Util.pm
sub register_implementation { 'MooseX::AttributeHelpers::Collection::Hash' }
18
19
20118µs1;
21
22__END__
23
24=pod
25
26=head1 NAME
27
28MooseX::AttributeHelpers::Collection::Hash
29
30=head1 SYNOPSIS
31
32 package Stuff;
33 use Moose;
34 use MooseX::AttributeHelpers;
35
36 has 'options' => (
37 metaclass => 'Collection::Hash',
38 is => 'ro',
39 isa => 'HashRef[Str]',
40 default => sub { {} },
41 provides => {
42 'set' => 'set_option',
43 'get' => 'get_option',
44 'empty' => 'has_options',
45 'count' => 'num_options',
46 'delete' => 'delete_option',
47 }
48 );
49
50=head1 DESCRIPTION
51
52This module provides a Hash attribute which provides a number of
53hash-like operations. See L<MooseX::AttributeHelpers::MethodProvider::Hash>
54for more details.
55
56=head1 METHODS
57
58=over 4
59
60=item B<meta>
61
62=item B<method_provider>
63
64=item B<has_method_provider>
65
66=item B<helper_type>
67
68=back
69
70=head1 BUGS
71
72All complex software has bugs lurking in it, and this module is no
73exception. If you find a bug please either email me, or add the bug
74to cpan-RT.
75
76=head1 AUTHOR
77
78Stevan Little E<lt>stevan@iinteractive.comE<gt>
79
80=head1 COPYRIGHT AND LICENSE
81
82Copyright 2007-2009 by Infinity Interactive, Inc.
83
84L<http://www.iinteractive.com>
85
86This library is free software; you can redistribute it and/or modify
87it under the same terms as Perl itself.
88
89=cut