| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package MooseX::AttributeHelpers::Trait::Collection; |
|
2
|
|
|
|
|
|
|
# ABSTRACT: Base class for all collection type helpers |
|
3
|
22
|
|
|
22
|
|
9723
|
use Moose::Role; |
|
|
22
|
|
|
|
|
27
|
|
|
|
22
|
|
|
|
|
115
|
|
|
4
|
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
our $VERSION = '0.25'; |
|
6
|
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
with 'MooseX::AttributeHelpers::Trait::Base'; |
|
8
|
|
|
|
|
|
|
|
|
9
|
22
|
|
|
22
|
|
72732
|
no Moose::Role; |
|
|
22
|
|
|
|
|
29
|
|
|
|
22
|
|
|
|
|
155
|
|
|
10
|
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
1; |
|
12
|
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
__END__ |
|
14
|
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=pod |
|
16
|
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=encoding UTF-8 |
|
18
|
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 NAME |
|
20
|
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
MooseX::AttributeHelpers::Trait::Collection - Base class for all collection type helpers |
|
22
|
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head1 VERSION |
|
24
|
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
version 0.25 |
|
26
|
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head1 DESCRIPTION |
|
28
|
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
Documentation to come. |
|
30
|
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head1 METHODS |
|
32
|
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=over 4 |
|
34
|
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=item B<meta> |
|
36
|
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=item B<container_type> |
|
38
|
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=item B<container_type_constraint> |
|
40
|
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
=item B<has_container_type> |
|
42
|
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=item B<process_options_for_provides> |
|
44
|
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
=back |
|
46
|
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=head1 SUPPORT |
|
48
|
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
Bugs may be submitted through L<the RT bug tracker|https://rt.cpan.org/Public/Dist/Display.html?Name=MooseX-AttributeHelpers> |
|
50
|
|
|
|
|
|
|
(or L<bug-MooseX-AttributeHelpers@rt.cpan.org|mailto:bug-MooseX-AttributeHelpers@rt.cpan.org>). |
|
51
|
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
There is also a mailing list available for users of this distribution, at |
|
53
|
|
|
|
|
|
|
L<http://lists.perl.org/list/moose.html>. |
|
54
|
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
There is also an irc channel available for users of this distribution, at |
|
56
|
|
|
|
|
|
|
L<C<#moose> on C<irc.perl.org>|irc://irc.perl.org/#moose>. |
|
57
|
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
=head1 AUTHOR |
|
59
|
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
Stevan Little <stevan@iinteractive.com> |
|
61
|
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
|
63
|
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
This software is copyright (c) 2007 by Stevan Little and Infinity Interactive, Inc. |
|
65
|
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
|
67
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
|
68
|
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
=cut |