<<

NAME

Inca::Validate - Wrapper to encapsulate dependence on Params::Validate

SYNOPSIS

  use Inca::Validate ":all";

DESCRIPTION

This module wraps the functions exported by Params::Validate, allowing access to them when the module is installed and preventing clients from puking otherwise.

EXAMPLE

  use Inca::Validate ":all";
  sub mysub {
    # Two required, one optional param.
    validate_pos(1, 1, 0);
  }

AUTHOR

Jim Hayes <jhayes@sdsc.edu>

<<