| MooseX-Method documentation | Contained in the MooseX-Method distribution. |
MooseX::Meta::Parameter::Compiled - Compiled parameter API role
This API is unstable, it may change at any time. This should not affect ordinary MooseX::Method usage.
Ensures that the class importing the role conforms to the MooseX::Method compiled parameter API.
Most software has bugs. This module probably isn't an exception. If you find a bug please either email me, or add the bug to cpan-RT.
Anders Nor Berle <debolaz@gmail.com>
Copyright 2007 by Anders Nor Berle.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| MooseX-Method documentation | Contained in the MooseX-Method distribution. |
package MooseX::Meta::Parameter::Compiled; use Moose::Role; with qw/MooseX::Meta::Parameter/; requires qw/as_perl compile/; our $VERSION = '0.01'; our $AUTHORITY = 'cpan:BERLE'; 1; __END__