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.