perldebug - Perl debugging

NAME DESCRIPTION The Perl DebuggerCalling the Debugger Debugger Commands Configurable Options Debugger Input/Output Debugging Compile-Time Statements Debugger Customization Readline Support / History in the Debugger Editor Support for Debugging The Perl Profiler Debugging Regular Expressions Debugging Memory Usage SEE ALSO BUGS NAME perldebug - Perl debugging DESCRIPTION First of all, have you tried using the -w switch? If you're new to the Perl debugger, you may prefer to read perldeb

perlmodinstall - Installing CPAN Modules

NAME DESCRIPTIONPREAMBLE PORTABILITY HEY AUTHOR COPYRIGHT NAME perlmodinstall - Installing CPAN Modules DESCRIPTION You can think of a module as the fundamental unit of reusable Perl code; see perlmod for details. Whenever anyone creates a chunk of Perl code that they think will be useful to the world, they register as a Perl developer at http://www.cpan.org/modules/04pause.html so that they can then upload their code to the CPAN. The CPAN is the Comprehensive Perl Archive Network and can be

link

link OLDFILE,NEWFILE Creates a new filename linked to the old filename. Returns true for success, false otherwise. Portability issues: link in perlport.

Encode::CJKConstants.pm -- Internally used by Encode::??::ISO_2022_*

NAME NAME Encode::CJKConstants.pm -- Internally used by Encode::??::ISO_2022_*

IO::File - supply object methods for filehandles

NAME SYNOPSIS DESCRIPTION CONSTRUCTOR METHODS NOTE SEE ALSO HISTORY NAME IO::File - supply object methods for filehandles SYNOPSIS use IO::File; $fh = IO::File->new(); if ($fh->open("< file")) { print <$fh>; $fh->close; } $fh = IO::File->new("> file"); if (defined $fh) { print $fh "bar\n"; $fh->close; } $fh = IO::File->new("file", "r"); if (defined $fh) { print <$fh>; undef $fh; # automatically closes the file } $fh = IO::F

Attribute::Handlers - Simpler definition of attribute handlers

NAME VERSION SYNOPSIS DESCRIPTIONTyped lexicals Type-specific attribute handlers Non-interpretive attribute handlers Phase-specific attribute handlers Attributes as tie interfaces EXAMPLES UTILITY FUNCTIONS DIAGNOSTICS AUTHOR BUGS COPYRIGHT AND LICENSE NAME Attribute::Handlers - Simpler definition of attribute handlers VERSION This document describes version 0.97 of Attribute::Handlers. SYNOPSIS package MyClass; require 5.006; use Attribute::Handlers; no warnings 'redefine';

values

values HASH values ARRAY values EXPR In list context, returns a list consisting of all the values of the named hash. In Perl 5.12 or later only, will also return a list of the values of an array; prior to that release, attempting to use an array argument will produce a syntax error. In scalar context, returns the number of values. Hash entries are returned in an apparently random order. The actual random order is specific to a given hash; the exact same series of operations on two hashes may re

CPAN::FirstTime - Utility for CPAN::Config file Initialization

NAME SYNOPSIS DESCRIPTION LICENSE NAME CPAN::FirstTime - Utility for CPAN::Config file Initialization SYNOPSIS CPAN::FirstTime::init() DESCRIPTION The init routine asks a few questions and writes a CPAN/Config.pm or CPAN/MyConfig.pm file (depending on what it is currently using). In the following all questions and explanations regarding config variables are collected. auto_commit Normally CPAN.pm keeps config variables in memory and changes need to be saved in a separate 'o conf commit' comm

IPC::SysV - System V IPC constants and system calls

NAME SYNOPSIS DESCRIPTION SEE ALSO AUTHORS COPYRIGHT NAME IPC::SysV - System V IPC constants and system calls SYNOPSIS use IPC::SysV qw(IPC_STAT IPC_PRIVATE); DESCRIPTION IPC::SysV defines and conditionally exports all the constants defined in your system include files which are needed by the SysV IPC calls. Common ones include IPC_CREAT IPC_EXCL IPC_NOWAIT IPC_PRIVATE IPC_RMID IPC_SET IPC_STAT GETVAL SETVAL GETPID GETNCNT GETZCNT GETALL SETALL SEM_A SEM_R SEM_UNDO SHM_RDONLY SHM_RND SHMLBA

bignum - Transparent BigNumber support for Perl

NAME SYNOPSIS DESCRIPTIONOptions Methods Caveats Math Library INTERNAL FORMAT SIGN CAVEATS MODULES USED EXAMPLES LICENSE SEE ALSO AUTHORS NAME bignum - Transparent BigNumber support for Perl SYNOPSIS use bignum; $x = 2 + 4.5,"\n"; # BigFloat 6.5 print 2 ** 512 * 0.1,"\n"; # really is what you think it is print inf * inf,"\n"; # prints inf print NaN * 3,"\n"; # prints NaN { no bignum; print 2 ** 256,"\n"; # a normal Perl scalar now } # for older Perls, import into current pack