Moose::Meta::TypeConstraint::Union
A union of Moose type constraints
- Provided by: libmoose-perl (Version: 2.1005-1)
- Report a bug
A union of Moose type constraints
version 2.1005
This metaclass represents a union of type constraints. A union takes multiple type constraints, and is true if any one of its member constraints is true.
"Moose::Meta::TypeConstraint::Union" is a subclass of Moose::Meta::TypeConstraint.
It takes the same options as its parent. It also requires an additional option, "type_constraints". This is an array reference containing the Moose::Meta::TypeConstraint objects that are the members of the union type. The "name" option defaults to the names all of these member types sorted and then joined by a pipe (|).
The constructor sets the implementation of the constraint so that is simply calls "check" on the newly created object.
Finally, the constructor also makes sure that the object's "coercion" attribute is a Moose::Meta::TypeCoercion::Union object.
With "validate" the error message returned includes all of the error messages returned by the member type constraints.
See "BUGS" in Moose for details on reporting bugs.
Moose is maintained by the Moose Cabal, along with the help of many contributors. See "CABAL" in Moose and "CONTRIBUTORS" in Moose for details.
This software is copyright (c) 2013 by Infinity Interactive, Inc..
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.