Inca::Validate - Wrapper to encapsulate dependence on Params::Validate
use Inca::Validate ":all";
This module wraps the functions exported by Params::Validate, allowing access to them when the module is installed and preventing clients from puking otherwise.
use Inca::Validate ":all";
sub mysub {
# Two required, one optional param.
validate_pos(1, 1, 0);
}
Jim Hayes <jhayes@sdsc.edu>