MooseX::Meta::Parameter::Compiled - Compiled parameter API role


MooseX-Method documentation Contained in the MooseX-Method distribution.

Index


Code Index:

NAME

Top

MooseX::Meta::Parameter::Compiled - Compiled parameter API role

WARNING

Top

This API is unstable, it may change at any time. This should not affect ordinary MooseX::Method usage.

DESCRIPTION

Top

Ensures that the class importing the role conforms to the MooseX::Method compiled parameter API.

BUGS

Top

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.

AUTHOR

Top

Anders Nor Berle <debolaz@gmail.com>

COPYRIGHT AND LICENSE

Top


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__