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

NAME

Input::Validator::Constraint::Date - Date constraint

SYNOPSIS

    $validator->field('date')->constraint('date');
    $validator->field('date')->constraint('date', split => '/');

DESCRIPTION

Checks whether a value is a valid date. Date is a string with a separator (/ by default), that is splitted into year, month, day sequence and then validated.

METHODS

is_valid

Validates the constraint.

SEE ALSO

Input::Validator, Input::Constraint