The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

    Validator::Lazy::Role::Check::Form

VERSION

Version 0.01

SYNOPSIS

    use Validator::Lazy;
    my $v = Validator::Lazy->new( Form => [ simple list of field names ] ); # empty, or list, or scalar with 2letters countrycode

    BUT! Form validation is a more complicaded construction than simple scalars, so we should use more advansed configuration,
    so we may use YAML or something like it as a config.

    Some examples:

        my $v = Validator::Lazy->new( 'string without \n interprets as a file name. extention will interprets as a file format' );
        my $v = Validator::Lazy->new( 'string WITH \n's interprets as YAML' );
        my $v = Validator::Lazy->new( { HASH interprets as a ready for work config } );

    my $ok = $v->check( { form => { Form => { hash of field-name => value pairs to check } } } );

    say Dumper $v->errors;

    Please check more details about forms in Validator::Lazy

DESCRIPTION

    An internal Role for Validator::Lazy, part of Validator::Lazy package.

    Provides "Form" type for Validator::Lazy config.
    Allows to check hashes as a key-value forms.

METHODS

check

    Called from inside if Validator::Lazy->check process

    Temporary overrides internal Validator::Lazy::check method like this:

    $validator->check( $value, $param );

SUPPORT AND DOCUMENTATION

    After installing, you can find documentation for this module with the perldoc command.

    perldoc Validator::Lazy

    You can also look for information at:

        RT, CPAN's request tracker (report bugs here)
            http://rt.cpan.org/NoAuth/Bugs.html?Dist=Validator-Lazy

        AnnoCPAN, Annotated CPAN documentation
            http://annocpan.org/dist/Validator-Lazy

        CPAN Ratings
            http://cpanratings.perl.org/d/Validator-Lazy

        Search CPAN
            http://search.cpan.org/dist/Validator-Lazy/

AUTHOR

ANTONC <antonc@cpan.org>

LICENSE

    This program is free software; you can redistribute it and/or modify it
    under the terms of the the Artistic License (2.0). You may obtain a
    copy of the full license at:

    L<http://www.perlfoundation.org/artistic_license_2_0>