MooseX::Params::Validate
- Some of the power of Params::Validate
- Some of the types of Moose (Str, Int, ArrayRef, ...)
- Not as "slick" as MooseX::Method
sub method {
my $self = shift;
my %p = validate( @_, { size => { isa => 'Int' } } );
...
}