table of contents
- Tumbleweed 2.008002-1.2
- Leap-15.6
Types::Standard::HashRef(3) | User Contributed Perl Documentation | Types::Standard::HashRef(3) |
NAME¶
Types::Standard::HashRef - exporter utility for the HashRef type constraint
SYNOPSIS¶
use Types::Standard -types; # Normal way to validate a hashref of integers. # HashRef->of( Int )->assert_valid( { one => 1 } ); use Types::Standard::HashRef IntHash => { of => Int }, # Exported shortcut # assert_IntHash { one => 1 };
STATUS¶
This module is not covered by the Type-Tiny stability policy.
DESCRIPTION¶
This is mostly internal code, but can also act as an exporter utility.
Exports¶
Types::Standard::HashRef can be used experimentally as an exporter.
use Types::Standard 'Int'; use Types::Standard::HashRef IntHash => { of => Int };
This will export the following functions into your namespace:
Multiple types can be exported at once:
use Types::Standard -types; use Types::Standard::HashRef ( IntHash => { of => Int }, NumHash => { of => Num }, StrHash => { of => Str }, ); assert_IntHash { two => 2 }; # should not die
It's possible to further constrain the hashref using "where":
use Types::Standard::HashRef MyThing => { of => Int, where => sub { ... } };
BUGS¶
Please report any bugs to <https://github.com/tobyink/p5-type-tiny/issues>.
SEE ALSO¶
Types::Standard.
AUTHOR¶
Toby Inkster <tobyink@cpan.org>.
COPYRIGHT AND LICENCE¶
This software is copyright (c) 2013-2025 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.
DISCLAIMER OF WARRANTIES¶
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.
2025-05-01 | perl v5.42.0 |