=head1 NAME
-Moose::Meta::TypeConstraint::Parameterizable - Higher Order type constraints for Moose
+Moose::Meta::TypeConstraint::Parameterizable - Type constraints which can take a parameter (ArrayRef)
-=head1 METHODS
-
-=over 4
+=head1 DESCRIPTION
-=item B<constraint_generator>
+This class represents a parameterizable type constraint. This is a
+type constraint like C<ArrayRef> or C<HashRef>, that can be
+parameterized and made more specific by specifying a contained
+type. For example, instead of just an C<ArrayRef> of anything, you can
+specify that is an C<ArrayRef[Int]>.
-=item B<has_constraint_generator>
+A parameterizable constraint should not be used as an attribute type
+constraint. Instead, when parameterized it creates a
+L<Moose::Meta::TypeConstraint::Parameterized> which should be used.
-=item B<generate_constraint_for>
+=head1 INHERITANCE
-=item B<parameterize>
+C<Moose::Meta::TypeConstraint::Parameterizable> is a subclass of
+L<Moose::Meta::TypeConstraint>.
-Given a single type constraint or type constraint string, this method
-parameterizes the type based on the given argument.
-
-=item B<meta>
+=head1 METHODS
-=back
+This class is intentionally not documented because the API is
+confusing and needs some work.
=head1 BUGS
=head1 NAME
-Moose::Meta::TypeConstraint::Parameterized - Higher Order type constraints for Moose
+Moose::Meta::TypeConstraint::Parameterized - Type constraints with a bound parameter (ArrayRef[Int])
=head1 METHODS
-=over 4
+This class is intentionally not documented because the API is
+confusing and needs some work.
-=item B<compile_type_constraint>
+=head1 INHERITANCE
-=item B<type_parameter>
-
-=item B<has_type_parameter>
-
-=item B<meta>
-
-=item B<equals>
-
-=item B<create_child_type>
-
-=back
+C<Moose::Meta::TypeConstraint::Parameterized> is a subclass of
+L<Moose::Meta::TypeConstraint>.
=head1 BUGS
'Moose::Meta::TypeConstraint' => [ 'compile_type_constraint', 'union' ],
'Moose::Meta::TypeConstraint::Class' =>
[qw( equals is_a_type_of is_a_subtype_of )],
+ 'Moose::Meta::TypeConstraint::Parameterizable' => [ '.+' ],
+ 'Moose::Meta::TypeConstraint::Parameterized' => [ '.+' ],
'Moose::Meta::TypeConstraint::Union' => ['compile_type_constraint'],
);