my $current = $self;
while (my $parent = $current->parent) {
- return 1 if $parent->is_a_type_of($type);
+ return 1 if $parent->equals($type);
$current = $parent;
}
return @parents;
}
+sub _ancestor_count {
+ my $self = shift;
+ return scalar $self->_collect_all_parents;
+}
+
sub create_child_type {
my ($self, %opts) = @_;
my $class = ref $self;
return @other_constraints == 0;
}
-sub parents {
+sub parent {
my $self = shift;
- $self->type_constraints;
+
+ my @tcs = @{ $self->type_constraints };
+
+ my $deepest
+ = ( sort { $a->_ancestor_count <=> $b->_ancestor_count } @tcs )[-1];
+
+ for my $parent ( $deepest->_collect_all_parents ) {
+ return $parent if all { $_->is_a_type_of($parent) } @tcs;
+ }
}
sub validate {
This returns the array reference of C<type_constraints> provided to
the constructor.
-=item B<< $constraint->parents >>
+=item B<< $constraint->parent >>
-This returns the same constraint as the C<type_constraints> method.
+This returns the nearest common ancestor of all the components of the union.
=item B<< $constraint->check($value) >>