Tie::RefHash - use references as hash keys

NAME SYNOPSIS DESCRIPTION EXAMPLE THREAD SUPPORT STORABLE SUPPORT RELIC SUPPORT LICENSE MAINTAINER AUTHOR SEE ALSO NAME Tie::RefHash - use references as hash keys SYNOPSIS require 5.004; use Tie::RefHash; tie HASHVARIABLE, 'Tie::RefHash', LIST; tie HASHVARIABLE, 'Tie::RefHash::Nestable', LIST; untie HASHVARIABLE; DESCRIPTION This module provides the ability to use references as hash keys if you first tie the hash variable to this module. Normally, only the keys of the tied hash itself are p

crypt

crypt PLAINTEXT,SALT Creates a digest string exactly like the crypt(3) function in the C library (assuming that you actually have a version there that has not been extirpated as a potential munition). crypt() is a one-way hash function. The PLAINTEXT and SALT are turned into a short string, called a digest, which is returned. The same PLAINTEXT and SALT will always return the same string, but there is no (known) way to get the original PLAINTEXT from the hash. Small changes in the PLAINTEXT or

$/

$/ The input record separator, newline by default. This influences Perl's idea of what a "line" is. Works like awk's RS variable, including treating empty lines as a terminator if set to the null string (an empty line cannot contain any spaces or tabs). You may set it to a multi-character string to match a multi-character terminator, or to undef to read through the end of file. Setting it to "\n\n" means something slightly different than setting to "" , if the file contains consecutive empty l

ExtUtils::ParseXS - converts Perl XS code into C code

NAME SYNOPSIS DESCRIPTION EXPORT METHODS AUTHOR COPYRIGHT SEE ALSO NAME ExtUtils::ParseXS - converts Perl XS code into C code SYNOPSIS use ExtUtils::ParseXS; my $pxs = ExtUtils::ParseXS->new; $pxs->process_file( filename => 'foo.xs' ); $pxs->process_file( filename => 'foo.xs', output => 'bar.c', 'C++' => 1, typemap => 'path/to/typemap', hiertype => 1, except => 1

O - Generic interface to Perl Compiler backends

NAME SYNOPSIS DESCRIPTION CONVENTIONS IMPLEMENTATION BUGS AUTHOR NAME O - Generic interface to Perl Compiler backends SYNOPSIS perl -MO=[-q,]Backend[,OPTIONS] foo.pl DESCRIPTION This is the module that is used as a frontend to the Perl Compiler. If you pass the -q option to the module, then the STDOUT filehandle will be redirected into the variable $O::BEGIN_output during compilation. This has the effect that any output printed to STDOUT by BEGIN blocks or use'd modules will be stored in thi

shmread

shmread ID,VAR,POS,SIZE

perlqnx - Perl version 5 on QNX

NAME DESCRIPTIONRequired Software for Compiling Perl on QNX4 Outstanding Issues with Perl on QNX4 QNX auxiliary files Outstanding issues with perl under QNX6 Cross-compilation AUTHOR NAME perlqnx - Perl version 5 on QNX DESCRIPTION As of perl5.7.2 all tests pass under: QNX 4.24G Watcom 10.6 with Beta/970211.wcc.update.tar.F socket3r.lib Nov21 1996. As of perl5.8.1 there is at least one test still failing. Some tests may complain under known circumstances. See below and hints/qnx.sh for mor

File::GlobMapper - Extend File Glob to Allow Input and Output Files

NAME SYNOPSIS DESCRIPTIONBehind The Scenes Limitations Input File Glob Output File Glob Returned Data EXAMPLESA Rename script A few example globmaps SEE ALSO AUTHOR COPYRIGHT AND LICENSE NAME File::GlobMapper - Extend File Glob to Allow Input and Output Files SYNOPSIS use File::GlobMapper qw( globmap ); my $aref = globmap $input => $output or die $File::GlobMapper::Error ; my $gm = new File::GlobMapper $input => $output or die $File::GlobMapper::Error ; DESCRIPTION This m

or

or These operators are documented in perlop.

$PERL_VERSION

$PERL_VERSION