package Moose::Meta::TypeConstraint::Parameterizable; use strict; use warnings; use metaclass; our $VERSION = '0.01'; our $AUTHORITY = 'cpan:STEVAN'; use base 'Moose::Meta::TypeConstraint'; __PACKAGE__->meta->add_attribute('constraint_generator' => ( accessor => 'constraint_generator', predicate => 'has_constraint_generator', )); sub generate_constraint_for { my ($self, $type) = @_; return unless $self->has_constraint_generator; return $self->constraint_generator->($type->type_parameter) if $type->is_subtype_of($self->name); return $self->_can_coerce_constraint_from($type) if $self->has_coercion && $self->coercion->has_coercion_for_type($type->parent->name); return; } sub _can_coerce_constraint_from { my ($self, $type) = @_; my $coercion = $self->coercion; my $constraint = $self->constraint_generator->($type->type_parameter); return sub { local $_ = $coercion->coerce($_); $constraint->(@_); }; } 1; __END__ =pod =head1 NAME Moose::Meta::TypeConstraint::Parameterizable - Higher Order type constraints for Moose =head1 METHODS =over 4 =item B =item B =item B =item B =back =head1 BUGS All complex software has bugs lurking in it, and this module is no exception. If you find a bug please either email me, or add the bug to cpan-RT. =head1 AUTHOR Stevan Little Estevan@iinteractive.comE =head1 COPYRIGHT AND LICENSE Copyright 2006-2008 by Infinity Interactive, Inc. L This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut