1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059
|
package Data::Validate::Type;
use warnings;
use strict;
use base 'Exporter';
use Carp;
use Data::Dump qw();
use Scalar::Util qw();
my @boolean_functions_list = qw(
is_string
is_arrayref
is_hashref
is_coderef
is_number
is_instance
is_regex
);
my @assertion_functions_list = qw(
assert_string
assert_arrayref
assert_hashref
assert_coderef
assert_number
assert_instance
assert_regex
);
my @filtering_functions_list = qw(
filter_string
filter_arrayref
filter_hashref
filter_coderef
filter_number
filter_instance
filter_regex
);
our @EXPORT_OK =
(
@boolean_functions_list,
@assertion_functions_list,
@filtering_functions_list,
);
our %EXPORT_TAGS =
(
boolean_tests => \@boolean_functions_list,
assertions => \@assertion_functions_list,
filters => \@filtering_functions_list,
all =>
[
@boolean_functions_list,
@assertion_functions_list,
@filtering_functions_list,
],
);
=head1 NAME
Data::Validate::Type - Data type validation functions.
=head1 VERSION
Version 1.6.0
=cut
our $VERSION = '1.6.0';
=head1 SYNOPSIS
# Call with explicit package name.
use Data::Validate::Type;
if ( Data::Validate::Type::is_string( 'test' ) )
{
# ...
}
# Import specific functions.
use Data::Validate::Type qw( is_string );
if ( is_string( 'test' ) )
{
# ...
}
# Import functions for a given paradigm.
use Data::Validate::Type qw( :boolean_tests );
if ( is_string( 'test' ) )
{
# ...
}
=head1 DESCRIPTION
L<Params::Util> is a wonderful module, but suffers from a few drawbacks:
=over 4
=item * Function names start with an underscore, which is usually used to
indicate private functions.
=item * Function names are uppercase, which is usually used to indicate file
handles or constants.
=item * Function names don't pass PerlCritic's validation, making them
problematic to import.
=item * Functions use by default the convention that collection that collections
need to not be empty to be valid (see _ARRAY0/_ARRAY for example), which is
counter-intuitive.
=item * In Pure Perl mode, the functions are created via eval, which causes
issues for L<Devel::Cover> in taint mode.
=back
Those drawbacks are purely cosmetic and don't affect the usefulness of the
functions, except for the last one. This module used to encapsulate
L<Params::Util>, but I had to refactor it out to fix the issues with
L<Devel::Cover>.
Please note that I prefer long function names that are descriptive, to arcane
short ones. This increases readability, and the bulk of the typing can be
spared with the use of a good IDE like Padre.
Also, this is work in progress - There is more functions that should be added
here, if you need one in particular feel free to contact me.
=head1 BOOLEAN TEST FUNCTIONS
Functions in this group return a boolean to indicate whether the parameters
passed match the test(s) specified by the functions or not.
All the boolean functions can be imported at once in your namespace with the
following line:
use Data::Validate::Type qw( :boolean_tests );
=head2 is_string()
Return a boolean indicating if the variable passed is a string.
my $is_string = Data::Validate::Type::is_string( $variable );
Note: 0 and '' (empty string) are valid strings.
Parameters:
=over 4
=item * allow_empty
Boolean, default 1. Allow the string to be empty or not.
=back
=cut
sub is_string
{
my ( $variable, %args ) = @_;
# Check parameters.
my $allow_empty = delete( $args{'allow_empty'} );
$allow_empty = 1 unless defined( $allow_empty );
croak 'Arguments not recognized: ' . Data::Dump::dump( %args )
unless scalar( keys %args ) == 0;
# Check variable.
return 0 if !defined( $variable ) || ref( $variable );
# Check length if we don't allow empty strings.
return 0 if !$allow_empty && length( $variable ) == 0;
return 1;
}
=head2 is_arrayref()
Return a boolean indicating if the variable passed is an arrayref that can be
dereferenced into an array.
my $is_arrayref = Data::Validate::Type::is_arrayref( $variable );
my $is_arrayref = Data::Validate::Type::is_arrayref(
$variable,
allow_empty => 1,
no_blessing => 0,
);
# Check if the variable is an arrayref of hashrefs.
my $is_arrayref = Data::Validate::Type::is_arrayref(
$variable,
allow_empty => 1,
no_blessing => 0,
element_validate_type =>
sub
{
return Data::Validate::Type::is_hashref( $_[0] );
},
);
Parameters:
=over 4
=item * allow_empty
Boolean, default 1. Allow the array to be empty or not.
=item * no_blessing
Boolean, default 0. Require that the variable is not blessed.
=item * element_validate_type
None by default. Set it to a coderef to validate the elements in the array.
The coderef will be passed the element to validate as first parameter, and it
must return a boolean indicating whether the element was valid or not.
=back
=cut
sub is_arrayref
{
my ( $variable, %args ) = @_;
# Check parameters.
my $allow_empty = delete( $args{'allow_empty'} );
$allow_empty = 1 unless defined( $allow_empty );
my $no_blessing = delete( $args{'no_blessing'} ) || 0;
my $element_validate_type = delete( $args{'element_validate_type'} );
croak '"element_validate_type" must be a coderef'
if defined( $element_validate_type ) && !is_coderef( $element_validate_type );
croak 'Arguments not recognized: ' . Data::Dump::dump( %args )
unless scalar( keys %args ) == 0;
# Check variable.
return 0 if !defined( $variable ) || !ref( $variable );
if ( $no_blessing )
{
# The variable must be a standard arrayref.
return 0 if ref( $variable ) ne 'ARRAY';
}
else
{
# Check that the variable is either an array or allows
# dereferencing as one.
return 0 if !
(
( Scalar::Util::reftype( $variable ) eq 'ARRAY' )
|| overload::Method( $variable, '@{}' )
);
}
# Check size of the array if we require a non-empty array.
return 0 if !$allow_empty && scalar( @$variable ) == 0;
# If we have an element validator specified, now that we know that we have
# an array, it's a good time to test the individual elements.
if ( defined( $element_validate_type ) )
{
foreach my $element ( @$variable )
{
return 0 if !$element_validate_type->( $element );
}
}
return 1;
}
=head2 is_hashref()
Return a boolean indicating if the variable passed is a hashref that can be
dereferenced into a hash.
my $is_hashref = Data::Validate::Type::is_hashref( $variable );
my $is_hashref = Data::Validate::Type::is_hashref(
$variable,
allow_empty => 1,
no_blessing => 0,
);
Parameters:
=over 4
=item * allow_empty
Boolean, default 1. Allow the array to be empty or not.
=item * no_blessing
Boolean, default 0. Require that the variable is not blessed.
=back
=cut
sub is_hashref
{
my ( $variable, %args ) = @_;
# Check parameters.
my $allow_empty = delete( $args{'allow_empty'} );
$allow_empty = 1 unless defined( $allow_empty );
my $no_blessing = delete( $args{'no_blessing'} ) || 0;
croak 'Arguments not recognized: ' . Data::Dump::dump( %args )
unless scalar( keys %args ) == 0;
# Check variable.
return 0 if !defined( $variable ) || !ref( $variable );
if ( $no_blessing )
{
# The variable must be a standard hashref.
return 0 if ref( $variable ) ne 'HASH';
}
else
{
# Check that the variable is either a hashref or allows dereferencing
# as one.
return 0 if !
(
( Scalar::Util::reftype( $variable ) eq 'HASH' )
|| overload::Method( $variable, '%{}' )
);
}
# If we don't allow empty hashes, check keys.
return 0 if !$allow_empty && scalar( keys %$variable ) == 0;
return 1;
}
=head2 is_coderef()
Return a boolean indicating if the variable passed is an coderef that can be
dereferenced into a block of code.
my $is_coderef = Data::Validate::Type::is_coderef( $variable );
=cut
sub is_coderef
{
my ( $variable, %args ) = @_;
# Check parameters.
croak 'Arguments not recognized: ' . Data::Dump::dump( %args )
unless scalar( keys %args ) == 0;
# Check variable.
return 0 if !defined( $variable ) || !ref( $variable );
return 0 if ref( $variable ) ne 'CODE';
return 1;
}
=head2 is_number()
Return a boolean indicating if the variable passed is a number.
my $is_number = Data::Validate::Type::is_number( $variable );
my $is_number = Data::Validate::Type::is_number(
$variable,
positive => 1,
);
my $is_number = Data::Validate::Type::is_number(
$variable,
strictly_positive => 1,
);
Parameters:
=over 4
=item * strictly_positive
Boolean, default 0. Set to 1 to check for a strictly positive number.
=item * positive
Boolean, default 0. Set to 1 to check for a positive number.
=back
=cut
sub is_number
{
my ( $variable, %args ) = @_;
# Check parameters.
my $positive = delete( $args{'positive'} ) || 0;
my $strictly_positive = delete( $args{'strictly_positive'} ) || 0;
croak 'Arguments not recognized: ' . Data::Dump::dump( %args )
unless scalar( keys %args ) == 0;
# Check variable.
return 0 if !defined( $variable ) || ref( $variable );
# Requires Scalar::Util v1.18 or higher.
return 0 if !Scalar::Util::looks_like_number( $variable );
# Check extra restrictions.
return 0 if $positive && $variable < 0;
return 0 if $strictly_positive && $variable <= 0;
return 1;
}
=head2 is_instance()
Return a boolean indicating if the variable is an instance of the given class.
Note that this handles inheritance properly, so it will return true if the
variable is an instance of a subclass of the class given.
my $is_instance = Data::Validate::Type::is_instance(
$variable,
class => $class,
);
Parameters:
=over 4
=item * class
Required, the name of the class to check the variable against.
=back
=cut
sub is_instance
{
my ( $variable, %args ) = @_;
# Check parameters.
my $class = delete( $args{'class'} );
croak 'A class argument is required'
if !defined( $class ) || $class eq '';
croak 'Arguments not recognized: ' . Data::Dump::dump( %args )
unless scalar( keys %args ) == 0;
# Check variable.
return 0 if !defined( $variable ) || !Scalar::Util::blessed( $variable );
# Test that the object is a member if the class.
return 0 if !$variable->isa( $class );
return 1;
}
=head2 is_regex()
Return a boolean indicating if the variable is a regular expression.
my $is_regex = Data::Validate::Type::is_regex( $variable );
=cut
sub is_regex
{
my ( $variable ) = @_;
# Check variable.
return defined( $variable ) && ( ref( $variable ) eq 'Regexp' )
? 1
: 0;
}
=head1 ASSERTION-BASED FUNCTIONS
Functions in this group do not return anything, but will die when the parameters
passed don't match the test(s) specified by the functions.
All the assertion test functions can be imported at once in your namespace with
the following line:
use Data::Validate::Type qw( :assertions );
=head2 assert_string()
Die unless the variable passed is a string.
Data::Validate::Type::assert_string( $variable );
Note: 0 and '' (empty string) are valid strings.
Parameters:
=over 4
=item * allow_empty
Boolean, default 1. Allow the string to be empty or not.
=back
=cut
sub assert_string
{
my ( $variable, %args ) = @_;
croak 'Not a string'
unless is_string( $variable, %args );
return;
}
=head2 assert_arrayref()
Die unless the variable passed is an arrayref that can be dereferenced into an
array.
Data::Validate::Type::assert_arrayref( $variable );
Data::Validate::Type::assert_arrayref(
$variable,
allow_empty => 1,
no_blessing => 0,
);
# Require the variable to be an arrayref of hashrefs.
Data::Validate::Type::assert_arrayref(
$variable,
allow_empty => 1,
no_blessing => 0,
element_validate_type =>
sub
{
return Data::Validate::Type::is_hashref( $_[0] );
},
);
Parameters:
=over 4
=item * allow_empty
Boolean, default 1. Allow the array to be empty or not.
=item * no_blessing
Boolean, default 0. Require that the variable is not blessed.
=item * element_validate_type
None by default. Set it to a coderef to validate the elements in the array.
The coderef will be passed the element to validate as first parameter, and it
must return a boolean indicating whether the element was valid or not.
=back
=cut
sub assert_arrayref
{
my ( $variable, %args ) = @_;
croak 'Not an arrayref'
unless is_arrayref( $variable, %args );
return;
}
=head2 assert_hashref()
Die unless the variable passed is a hashref that can be dereferenced into a hash.
Data::Validate::Type::assert_hashref( $variable );
Data::Validate::Type::assert_hashref(
$variable,
allow_empty => 1,
no_blessing => 0,
);
Parameters:
=over 4
=item * allow_empty
Boolean, default 1. Allow the array to be empty or not.
=item * no_blessing
Boolean, default 0. Require that the variable is not blessed.
=back
=cut
sub assert_hashref
{
my ( $variable, %args ) = @_;
croak 'Not a hashref'
unless is_hashref( $variable, %args );
return;
}
=head2 assert_coderef()
Die unless the variable passed is an coderef that can be dereferenced into a
block of code.
Data::Validate::Type::assert_coderef( $variable );
=cut
sub assert_coderef
{
my ( $variable, %args ) = @_;
croak 'Not a coderef'
unless is_coderef( $variable, %args );
return;
}
=head2 assert_number()
Die unless the variable passed is a number.
Data::Validate::Type::assert_number( $variable );
Data::Validate::Type::assert_number(
$variable,
positive => 1,
);
Data::Validate::Type::assert_number(
$variable,
strictly_positive => 1,
);
Parameters:
=over 4
=item * strictly_positive
Boolean, default 0. Set to 1 to check for a strictly positive number.
=item * positive
Boolean, default 0. Set to 1 to check for a positive number.
=back
=cut
sub assert_number
{
my ( $variable, %args ) = @_;
croak 'Not a number'
unless is_number( $variable, %args );
return;
}
=head2 assert_instance()
Die unless the variable is an instance of the given class.
Note that this handles inheritance properly, so it will not die if the
variable is an instance of a subclass of the class given.
Data::Validate::Type::assert_instance(
$variable,
class => $class,
);
Parameters:
=over 4
=item * class
Required, the name of the class to check the variable against.
=back
=cut
sub assert_instance
{
my ( $variable, %args ) = @_;
croak 'Not an instance of the class'
unless is_instance( $variable, %args );
return;
}
=head2 assert_regex()
Die unless the variable is a regular expression.
Data::Validate::Type::assert_regex( $variable );
=cut
sub assert_regex
{
my ( $variable ) = @_;
croak 'Not a regular expression'
unless is_regex( $variable );
return;
}
=head1 FILTERING FUNCTIONS
Functions in this group return the variable tested against when it matches the
test(s) specified by the functions.
All the filtering functions can be imported at once in your namespace with the
following line:
use Data::Validate::Type qw( :filters );
=head2 filter_string()
Return the variable passed if it is a string, otherwise return undef.
Data::Validate::Type::filter_string( $variable );
Note: 0 and '' (empty string) are valid strings.
Parameters:
=over 4
=item * allow_empty
Boolean, default 1. Allow the string to be empty or not.
=back
=cut
sub filter_string
{
my ( $variable, %args ) = @_;
return is_string( $variable, %args )
? $variable
: undef;
}
=head2 filter_arrayref()
Return the variable passed if it is an arrayref that can be dereferenced into an
array, otherwise undef.
Data::Validate::Type::filter_arrayref( $variable );
Data::Validate::Type::filter_arrayref(
$variable,
allow_empty => 1,
no_blessing => 0,
);
# Only return the variable if it is an arrayref of hashrefs.
Data::Validate::Type::filter_arrayref(
$variable,
allow_empty => 1,
no_blessing => 0,
element_validate_type =>
sub
{
return Data::Validate::Type::is_hashref( $_[0] );
},
);
Parameters:
=over 4
=item * allow_empty
Boolean, default 1. Allow the array to be empty or not.
=item * no_blessing
Boolean, default 0. Require that the variable is not blessed.
=item * element_validate_type
None by default. Set it to a coderef to validate the elements in the array.
The coderef will be passed the element to validate as first parameter, and it
must return a boolean indicating whether the element was valid or not.
=back
=cut
sub filter_arrayref
{
my ( $variable, %args ) = @_;
return is_arrayref( $variable, %args )
? $variable
: undef;
}
=head2 filter_hashref()
Return the variable passed if it is a hashref that can be dereferenced into a
hash, otherwise return undef.
Data::Validate::Type::filter_hashref( $variable );
Data::Validate::Type::filter_hashref(
$variable,
allow_empty => 1,
no_blessing => 0,
);
Parameters:
=over 4
=item * allow_empty
Boolean, default 1. Allow the array to be empty or not.
=item * no_blessing
Boolean, default 0. Require that the variable is not blessed.
=back
=cut
sub filter_hashref
{
my ( $variable, %args ) = @_;
return is_hashref( $variable, %args )
? $variable
: undef;
}
=head2 filter_coderef()
Return the variable passed if it is a coderef that can be dereferenced into a
block of code, otherwise return undef.
Data::Validate::Type::filter_coderef( $variable );
=cut
sub filter_coderef
{
my ( $variable, %args ) = @_;
return is_coderef( $variable, %args )
? $variable
: undef;
}
=head2 filter_number()
Return the variable passed if it is a number, otherwise return undef.
Data::Validate::Type::filter_number( $variable );
Data::Validate::Type::filter_number(
$variable,
positive => 1,
);
Data::Validate::Type::filter_number(
$variable,
strictly_positive => 1,
);
Parameters:
=over 4
=item * strictly_positive
Boolean, default 0. Set to 1 to check for a strictly positive number.
=item * positive
Boolean, default 0. Set to 1 to check for a positive number.
=back
=cut
sub filter_number
{
my ( $variable, %args ) = @_;
return is_number( $variable, %args )
? $variable
: undef;
}
=head2 filter_instance()
Return the variable passed if it is an instance of the given class.
Note that this handles inheritance properly, so it will return the variable if
it is an instance of a subclass of the class given.
Data::Validate::Type::filter_instance(
$variable,
class => $class,
);
Parameters:
=over 4
=item * class
Required, the name of the class to check the variable against.
=back
=cut
sub filter_instance
{
my ( $variable, %args ) = @_;
return is_instance( $variable, %args )
? $variable
: undef;
}
=head2 filter_regex()
Return the variable passed if it is a regular expression.
Data::Validate::Type::filter_regex( $variable );
=cut
sub filter_regex
{
my ( $variable ) = @_;
return is_regex( $variable )
? $variable
: undef;
}
=head1 BUGS
Please report any bugs or feature requests through the web interface at
L<https://github.com/guillaumeaubert/Data-Validate-Type/issues>.
I will be notified, and then you'll automatically be notified of progress on
your bug as I make changes.
=head1 SUPPORT
You can find documentation for this module with the perldoc command.
perldoc Data::Validate::Type
You can also look for information at:
=over 4
=item * GitHub (report bugs there)
L<https://github.com/guillaumeaubert/Data-Validate-Type/issues>
=item * AnnoCPAN: Annotated CPAN documentation
L<http://annocpan.org/dist/Data-Validate-Type>
=item * CPAN Ratings
L<http://cpanratings.perl.org/d/Data-Validate-Type>
=item * MetaCPAN
L<https://metacpan.org/release/Data-Validate-Type>
=back
=head1 AUTHOR
L<Guillaume Aubert|https://metacpan.org/author/AUBERTG>,
C<< <aubertg at cpan.org> >>.
=head1 ACKNOWLEDGEMENTS
Thanks to Adam Kennedy for writing L<Params::Util>. This module started as an
encapsulation for Params::Util and I learnt quite a bit from it.
=head1 COPYRIGHT & LICENSE
Copyright 2012-2017 Guillaume Aubert.
This code is free software; you can redistribute it and/or modify it under the
same terms as Perl 5 itself.
This program is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE. See the LICENSE file for more details.
=cut
1;
|