FindBin - Locate directory of original perl script

NAME SYNOPSIS DESCRIPTION EXPORTABLE VARIABLES KNOWN ISSUES AUTHORS COPYRIGHT NAME FindBin - Locate directory of original perl script SYNOPSIS use FindBin; use lib "$FindBin::Bin/../lib"; or use FindBin qw($Bin); use lib "$Bin/../lib"; DESCRIPTION Locates the full path to the script bin directory to allow the use of paths relative to the bin directory. This allows a user to setup a directory tree for some software with directories <root>/bin and <root>/lib , and then the above

$ARG

$ARG

Dumpvalue - provides screen dump of Perl data.

NAME SYNOPSIS DESCRIPTIONCreation Methods NAME Dumpvalue - provides screen dump of Perl data. SYNOPSIS use Dumpvalue; my $dumper = Dumpvalue->new; $dumper->set(globPrint => 1); $dumper->dumpValue(\*::); $dumper->dumpvars('main'); my $dump = $dumper->stringify($some_value); DESCRIPTION Creation A new dumper is created by a call $d = Dumpvalue->new(option1 => value1, option2 => value2) Recognized options: arrayDepth , hashDepth Print only first N elements of arr

$)

$) The effective gid of this process. If you are on a machine that supports membership in multiple groups simultaneously, gives a space separated list of groups you are in. The first number is the one returned by getegid() , and the subsequent ones by getgroups() , one of which may be the same as the first number. Similarly, a value assigned to $) must also be a space-separated list of numbers. The first number sets the effective gid, and the rest (if any) are passed to setgroups() . To get th

bigint - Transparent BigInteger support for Perl

NAME SYNOPSIS DESCRIPTIONuse integer vs. use bigint Options Math Library Internal Format Sign Method calls Methods CAVEATS MODULES USED EXAMPLES LICENSE SEE ALSO AUTHORS NAME bigint - Transparent BigInteger support for Perl SYNOPSIS use bigint; $x = 2 + 4.5,"\n"; # BigInt 6 print 2 ** 512,"\n"; # really is what you think it is print inf + 42,"\n"; # inf print NaN * 7,"\n"; # NaN print hex("0x1234567890123490"),"\n"; # Perl v5.10.0 or later { no bigint; print 2 ** 256,"\n"; #

$FORMAT_FORMFEED

$FORMAT_FORMFEED

perlintern - autogenerated documentation of purely internal Perl functions

NAME DESCRIPTION Compile-time scope hooks Custom Operators CV Manipulation Functions CV reference counts and CvOUTSIDE Embedding Functions GV Functions Hash Manipulation Functions IO Functions Lexer interface Magical Functions Miscellaneous Functions MRO Functions Optree Manipulation Functions Pad Data Structures Per-Interpreter Variables Stack Manipulation Macros SV Manipulation Functions SV-Body Allocation Unicode Support Undocumented functions AUTHORS SEE ALSO NAME perlintern - autogenera

@ARG

@ARG

AUTOLOAD

AUTOLOAD This keyword is documented in Autoloading in perlsub.

if - use a Perl module if a condition holds (also can no a module)

NAME SYNOPSIS DESCRIPTIONEXAMPLES BUGS SEE ALSO AUTHOR NAME if - use a Perl module if a condition holds (also can no a module) SYNOPSIS use if CONDITION, MODULE => ARGUMENTS; no if CONDITION, MODULE => ARGUMENTS; DESCRIPTION The if module is used to conditionally load or unload another module. The construct use if CONDITION, MODULE => ARGUMENTS; will load MODULE only if CONDITION evaluates to true. The above statement has no effect unless CONDITION is true. If the CONDITION does e