← 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:22 2010

File /usr/local/lib/perl5/site_perl/5.10.1/MooseX/AttributeHelpers/Collection/Bag.pm
Statements Executed 12
Statement Execution Time 178µs
Subroutines — ordered by exclusive time
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11116µs2.31msMooseX::AttributeHelpers::Collection::Bag::::BEGIN@3 MooseX::AttributeHelpers::Collection::Bag::BEGIN@3
1118µs102µsMooseX::AttributeHelpers::Collection::Bag::::BEGIN@12 MooseX::AttributeHelpers::Collection::Bag::BEGIN@12
0000s0sMoose::Meta::Attribute::Custom::Collection::Bag::::register_implementationMoose::Meta::Attribute::Custom::Collection::Bag::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::Bag;
3371µs24.60ms
# spent 2.31ms (16µs+2.29) within MooseX::AttributeHelpers::Collection::Bag::BEGIN@3 which was called # once (16µs+2.29ms) by MooseX::AttributeHelpers::BEGIN@31 at line 3
use Moose;
4
51600nsour $VERSION = '0.23';
6115µs$VERSION = eval $VERSION;
71300nsour $AUTHORITY = 'cpan:STEVAN';
8
912µs1450µsextends 'Moose::Meta::Attribute';
# spent 450µs making 1 call to Moose::extends
1012µs18.74mswith 'MooseX::AttributeHelpers::Trait::Collection::Bag';
# spent 8.74ms making 1 call to Moose::with
11
12363µs2197µs
# spent 102µs (8+94) within MooseX::AttributeHelpers::Collection::Bag::BEGIN@12 which was called # once (8µs+94µs) by MooseX::AttributeHelpers::BEGIN@31 at line 12
no Moose;
13
14# register the alias ...
15package # hide me from search.cpan.org
16 Moose::Meta::Attribute::Custom::Collection::Bag;
17sub register_implementation { 'MooseX::AttributeHelpers::Collection::Bag' }
18
19123µs1;
20
21__END__
22
23=pod
24
25=head1 NAME
26
27MooseX::AttributeHelpers::Collection::Bag
28
29=head1 SYNOPSIS
30
31 package Stuff;
32 use Moose;
33 use MooseX::AttributeHelpers;
34
35 has 'word_histogram' => (
36 metaclass => 'Collection::Bag',
37 is => 'ro',
38 isa => 'Bag', # optional ... as is default
39 provides => {
40 'add' => 'add_word',
41 'get' => 'get_count_for',
42 'empty' => 'has_any_words',
43 'count' => 'num_words',
44 'delete' => 'delete_word',
45 }
46 );
47
48=head1 DESCRIPTION
49
50This module provides a Bag attribute which provides a number of
51bag-like operations. See L<MooseX::AttributeHelpers::MethodProvider::Bag>
52for more details.
53
54=head1 METHODS
55
56=over 4
57
58=item B<meta>
59
60=item B<method_provider>
61
62=item B<has_method_provider>
63
64=item B<helper_type>
65
66=item B<process_options_for_provides>
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