news tests for API and coercions, more tests for both of those and additional docs.
[gitmo/MooseX-Types-Structured.git] / lib / MooseX / Meta / TypeCoercion / Structured.pm
1 package MooseX::Meta::TypeCoercion::Structured;
2
3 use Moose;
4 extends 'Moose::Meta::TypeCoercion';
5
6 =head1 NAME
7
8 MooseX::Meta::TypeCoercion::Structured - Coerce structured type constraints.
9
10 =head1 DESCRIPTION
11
12 We need to make sure we can properly coerce the structure elements inside a
13 structured type constraint.
14
15 This class is TDB once we fully understand the requirements for deep coercions.
16
17 =head1 METHODS
18
19 This class defines the following methods.
20
21 =head1 SEE ALSO
22
23 The following modules or resources may be of interest.
24
25 L<Moose>, L<Moose::Meta::TypeCoercion>
26
27 =head1 AUTHOR
28
29 John Napiorkowski, C<< <jjnapiork@cpan.org> >>
30
31 =head1 COPYRIGHT & LICENSE
32
33 This program is free software; you can redistribute it and/or modify
34 it under the same terms as Perl itself.
35
36 =cut
37
38 1;