Type::Tiny::XS(3pm) | User Contributed Perl Documentation | Type::Tiny::XS(3pm) |
Type::Tiny::XS - provides an XS boost for some of Type::Tiny's built-in type constraints
use Types::Standard qw(Int);
This module is optionally used by Type::Tiny 0.045_03 and above to provide faster, C-based implementations of some type constraints. (This package has only core dependencies, and does not depend on Type::Tiny, so other data validation frameworks might also consider using it!)
Only the following three functions should be considered part of the supported API:
Returns undef if this module cannot provide a suitable coderef.
Returns undef if this module cannot provide a suitable sub name.
In addition to the above functions, the subs returned by "get_coderef_for" and "get_subname_for" are considered part of the "supported API", but only for the lifetime of the Perl process that returned them.
To clarify, if you call "get_subname_for("ArrayRef[Int]")" in a script, this will return the name of a sub. That sub (which can be used to validate arrayrefs of integers) is now considered part of the supported API of Type::Tiny::XS until the script finishes running. Next time the script runs, there is no guarantee that the sub will continue to exist, or continue to do the same thing.
Please report any bugs to <http://rt.cpan.org/Dist/Display.html?Queue=Type-Tiny-XS>.
Type::Tiny, Types::Standard.
Toby Inkster <tobyink@cpan.org> forked all this from Mouse::Util::TypeConstraints.
This software is copyright (c) 2014 by Toby Inkster.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
2018-11-01 | perl v5.28.0 |