| MooseX-Method documentation | view source | Contained in the MooseX-Method distribution. |
MooseX::Meta::Signature::Combined::Compiled - Compiled combined signature
This API is unstable, it may change at any time. This should not affect ordinary MooseX::Method usage.
use MooseX::Meta::Signature::Combined::Compiled;
my $validator = MooseX::Meta::Signature::Combined::Compiled->new ({ isa => 'Int' })->compile;
eval {
$validator->(42);
};
Overriden from the superclass.
Produces a validator coderef.
Spits out most of the perl code used to produce the coderef above. This is primarily used internally for inlining.
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 | view source | Contained in the MooseX-Method distribution. |