| MooseX-Method documentation | view source | Contained in the MooseX-Method distribution. |
MooseX::Meta::Signature::Combined - Combined signature metaclass
This API is unstable, it may change at any time. This should not affect ordinary MooseX::Method usage.
use MooseX::Meta::Signature::Combined;
my $signature = MooseX::Meta::Signature::Combined->new (
{ isa => 'Int' },
foo => { required => 1 },
);
my @results;
eval {
@results = $signature->validate (23,bar => 2);
};
Validates the arguments against the signature. The first arguments must be the positional ones. The named arguments must be in the form of a hash, unlike the named signature this does not support hashrefs. Returns a list of the validated positional arguments and a hashref of the validated named arguments or throws an exception on validation error.
Returns the named signature.
Returns the positional signature.
Returns the length of the positional signature.
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. |