do all the renaming that was discussed
[gitmo/Moose.git] / lib / Moose / Meta / Attribute / Trait / Native / Collection.pm
CommitLineData
e3c07b19 1
a40b446a 2package Moose::Meta::Attribute::Trait::Native::Collection;
e3c07b19 3use Moose::Role;
4
96539d20 5our $VERSION = '0.87';
e3c07b19 6$VERSION = eval $VERSION;
7our $AUTHORITY = 'cpan:STEVAN';
8
a40b446a 9with 'Moose::Meta::Attribute::Trait::Native::Base';
e3c07b19 10
11no Moose::Role;
12
131;
14
15__END__
16
17=pod
18
19=head1 NAME
20
a40b446a 21Moose::Meta::Attribute::Trait::Native::Collection - Base class for all collection type helpers
e3c07b19 22
23=head1 DESCRIPTION
24
25Documentation to come.
26
27=head1 METHODS
28
29=over 4
30
31=item B<meta>
32
33=item B<container_type>
34
35=item B<container_type_constraint>
36
37=item B<has_container_type>
38
25d86888 39=item B<process_options_for_handles>
e3c07b19 40
41=back
42
43=head1 BUGS
44
45All complex software has bugs lurking in it, and this module is no
46exception. If you find a bug please either email me, or add the bug
47to cpan-RT.
48
49=head1 AUTHOR
50
51Stevan Little E<lt>stevan@iinteractive.comE<gt>
52
53=head1 COPYRIGHT AND LICENSE
54
55Copyright 2007-2009 by Infinity Interactive, Inc.
56
57L<http://www.iinteractive.com>
58
59This library is free software; you can redistribute it and/or modify
60it under the same terms as Perl itself.
61
62=cut