NAME
Params::Util - Simple, compact and correct param-checking functions
SYNOPSIS
# Import some functions
use Params::Util qw{_SCALAR _HASH _INSTANCE};
# If you are lazy, or need a lot of them...
use Params::Util ':ALL';
sub foo {
my $object = _INSTANCE(shift, 'Foo') or return undef;
my $image = _SCALAR(shift) or return undef
more»
Revision history for Perl extension Params-Util
1.04 Wed 20 Apr 2011
- Fixed #67522 have_compiler returns
1.03 Mon 22 Nov 2010
- No CPAN Testers failures, moving to production release
1.02_01 Thu 16 Sep 2010
- Trying for a much more advanced can_xs() alternative to can_cc()
to deal with the situation where a host has a superficially
working compiler, but completely screwed up headers.
more»
Terms of Perl itself
a) the GNU General Public License as published by the Free
Software Foundation; either version 1, or (at your option) any
later version, or
b) the "Artistic License"
----------------------------------------------------------------------------
The General Public License (GPL)
Version 2, June 1991
Copyright (C) 1989, 1991 Free Software Foundation, Inc. 675 Mass Ave,
C
more»