open - perl pragma to set default PerlIO layers for input and output

NAME SYNOPSIS DESCRIPTION NONPERLIO FUNCTIONALITY IMPLEMENTATION DETAILS SEE ALSO NAME open - perl pragma to set default PerlIO layers for input and output SYNOPSIS use open IN => ":crlf", OUT => ":bytes"; use open OUT => ':utf8'; use open IO => ":encoding(iso-8859-7)"; use open IO => ':locale'; use open ':encoding(utf8)'; use open ':locale'; use open ':encoding(iso-8859-7)'; use open ':std'; DESCRIPTION Full-fledged support for I/O layers is now implemented provided Per

perlintro -- a brief introduction and overview of Perl

NAME DESCRIPTIONWhat is Perl? Running Perl programs Safety net Basic syntax overview Perl variable types Variable scoping Conditional and looping constructs Builtin operators and functions Files and I/O Regular expressions Writing subroutines OO Perl Using Perl modules AUTHOR NAME perlintro -- a brief introduction and overview of Perl DESCRIPTION This document is intended to give you a quick overview of the Perl programming language, along with pointers to further documentation. It is inten

Pod::Escapes - for resolving Pod E<...> sequences

NAME SYNOPSIS DESCRIPTION GOODIES CAVEATS SEE ALSO REPOSITORY COPYRIGHT AND DISCLAIMERS AUTHOR NAME Pod::Escapes - for resolving Pod E<...> sequences SYNOPSIS use Pod::Escapes qw(e2char); ...la la la, parsing POD, la la la... $text = e2char($e_node->label); unless(defined $text) { print "Unknown E sequence \"", $e_node->label, "\"!"; } ...else print/interpolate $text... DESCRIPTION This module provides things that are useful in decoding Pod E<...> sequences. Presumably, i

Config - access Perl configuration information

NAME SYNOPSIS DESCRIPTION EXAMPLE WARNING GLOSSARY_ a b c d e f g h i k l m n o p P q r s t u v x y z GIT DATA NOTE NAME Config - access Perl configuration information SYNOPSIS use Config; if ($Config{usethreads}) { print "has thread support\n" } use Config qw(myconfig config_sh config_vars config_re); print myconfig(); print config_sh(); print config_re(); config_vars(qw(osname archname)); DESCRIPTION The Config module contains all the information that was av

%OS_ERROR

%OS_ERROR

NDBM_File - Tied access to ndbm files

NAME SYNOPSIS DESCRIPTION DIAGNOSTICSndbm store returned -1, errno 22, key "..." at ... BUGS AND WARNINGS NAME NDBM_File - Tied access to ndbm files SYNOPSIS use Fcntl; # For O_RDWR, O_CREAT, etc. use NDBM_File; tie(%h, 'NDBM_File', 'filename', O_RDWR|O_CREAT, 0666) or die "Couldn't tie NDBM file 'filename': $!; aborting"; # Now read and change the hash $h{newkey} = newvalue; print $h{oldkey}; ... untie %h; DESCRIPTION NDBM_File establishes a connection between a Perl hash variable a

$FORMAT_TOP_NAME

$FORMAT_TOP_NAME

Carp - alternative warn and die for modules

NAME SYNOPSIS DESCRIPTIONForcing a Stack Trace Stack Trace formatting GLOBAL VARIABLES$Carp::MaxEvalLen $Carp::MaxArgLen $Carp::MaxArgNums $Carp::Verbose $Carp::RefArgFormatter @CARP_NOT %Carp::Internal %Carp::CarpInternal $Carp::CarpLevel BUGS SEE ALSO AUTHOR COPYRIGHT LICENSE NAME Carp - alternative warn and die for modules SYNOPSIS use Carp; # warn user (from perspective of caller) carp "string trimmed to 80 chars"; # die of errors (from perspective of caller) croak "We're outta here

ExtUtils::Liblist - determine libraries to use and how to use them

NAME SYNOPSIS DESCRIPTIONEXTRALIBS LDLOADLIBS and LD_RUN_PATH BSLOADLIBS PORTABILITYVMS implementation Win32 implementation SEE ALSO NAME ExtUtils::Liblist - determine libraries to use and how to use them SYNOPSIS require ExtUtils::Liblist; $MM->ext($potential_libs, $verbose, $need_names); # Usually you can get away with: ExtUtils::Liblist->ext($potential_libs, $verbose, $need_names) DESCRIPTION This utility takes a list of libraries in the form -llib1 -llib2 -llib3 and returns l

threads::shared - Perl extension for sharing data structures between threads

NAME VERSION SYNOPSIS DESCRIPTION EXPORT FUNCTIONS OBJECTS NOTES WARNINGS BUGS AND LIMITATIONS SEE ALSO AUTHOR LICENSE NAME threads::shared - Perl extension for sharing data structures between threads VERSION This document describes threads::shared version 1.48 SYNOPSIS use threads; use threads::shared; my $var :shared; my %hsh :shared; my @ary :shared; my ($scalar, @array, %hash); share($scalar); share(@array); share(%hash); $var = $scalar_value; $var = $shared_ref_value; $var = shared_cl