The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Input::Validator::Bulk - Internal object for multiple fields processing

SYNOPSIS

    $validator->field(qw/foo bar/)->each(sub { shift->required(1) });

DESCRIPTION

Bulk object. Holds multiple fields that were created by Input::Validator.

METHODS

each

    $bulk->each(sub { shift->required(1) });

Every field is passed to this callback as the first parameter.

SEE ALSO

Input::Validator