lib/Moose/Object.pm
lib/Moose/Meta/Attribute.pm
lib/Moose/Meta/Class.pm
+lib/Moose/Meta/TypeCoercion.pm
+lib/Moose/Meta/TypeConstraint.pm
lib/Moose/Util/TypeConstraints.pm
t/000_load.t
t/001_basic.t
t/002_basic.t
t/003_basic.t
+t/004_basic.t
+t/005_basic.t
+t/006_basic.t
t/010_basic_class_setup.t
t/020_foreign_inheritence.t
t/050_util_type_constraints.t
t/051_util_type_constraints_export.t
t/052_util_std_type_constraints.t
+t/053_util_find_type_constraint.t
+t/054_util_type_coercion.t
t/pod.t
t/pod_coverage.t
=over 4
-=item I<is => 'rw'|'ro'>
+=item I<is =E<gt> 'rw'|'ro'>
The I<is> option accepts either I<rw> (for read/write) or I<ro> (for read
only). These will create either a read/write accessor or a read-only
If you need more control over how your accessors are named, you can use the
I<reader>, I<writer> and I<accessor> options inherited from L<Moose::Meta::Attribute>.
-=item I<isa => $type_name>
+=item I<isa =E<gt> $type_name>
The I<isa> option uses Moose's type constraint facilities to set up runtime
type checking for this attribute. Moose will perform the checks during class
=back
-=item B<before $name|@names => sub { ... }>
+=item B<before $name|@names =E<gt> sub { ... }>
-=item B<after $name|@names => sub { ... }>
+=item B<after $name|@names =E<gt> sub { ... }>
-=item B<around $name|@names => sub { ... }>
+=item B<around $name|@names =E<gt> sub { ... }>
This three items are syntactic sugar for the before, after and around method
modifier features that L<Class::MOP> provides. More information on these can
=item I blame Audrey Tang for encouraging that meta-crack habit in #perl6.
-=item Without the love and encouragement of Yuval "nothingmuch" Kogman,
-this module would not be possible (and it wouldn't have a name).
+=item Without Yuval "nothingmuch" Kogman this module would not be possible,
+and it would certainly have a name ;P
=item The basis of the TypeContraints module was Rob Kinyon's idea
originally, I just ran with it.
-=item Much love to mst & chansen and the whole #moose poose for all the
+=item Thanks to mst & chansen and the whole #moose poose for all the
ideas/feature-requests/encouragement
=back