Switch::Reftype

Sometimes, you want your subroutine or method to perform a specific
action based on the type of argument given. For example, your subroutine
might accept either a simple scalar, an array reference, or a hash
reference. Depending on which type of argument your subroutine got, it
has to act slightly differently. The Switch::Reftype family of functions
help you to easily codify these differences.

Switch::Reftype relies heavily on "reftype" in Scalar::Util from
Scalar::Util module.

INSTALLATION

This is a Perl module distribution. It should be installed with whichever
tool you use to manage your installation of Perl, e.g. any of

  cpanm .
  cpan  .
  cpanp -i .

Consult http://www.cpan.org/modules/INSTALL.html for further instruction.
Should you wish to install this module manually, the procedure is

  perl Makefile.PL
  make
  make test
  make install

COPYRIGHT AND LICENSE

This software is copyright (c) 2015 by P. Ramakers.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.