perlbook - Books about and related to Perl

NAME DESCRIPTIONThe most popular books References Tutorials Task-Oriented Special Topics Free (as in beer) books Other interesting, non-Perl books A note on freshness Get your book listed NAME perlbook - Books about and related to Perl DESCRIPTION There are many books on Perl and Perl-related. A few of these are good, some are OK, but many aren't worth your money. There is a list of these books, some with extensive reviews, at http://books.perl.org/ . We list some of the books here, and whi

perlapio - perl's IO abstraction interface.

NAME SYNOPSIS DESCRIPTIONCo-existence with stdio "Fast gets" Functions Other Functions NAME perlapio - perl's IO abstraction interface. SYNOPSIS #define PERLIO_NOT_STDIO 0 /* For co-existence with stdio only */ #include <perlio.h> /* Usually via #include <perl.h> */ PerlIO *PerlIO_stdin(void); PerlIO *PerlIO_stdout(void); PerlIO *PerlIO_stderr(void); PerlIO *PerlIO_open(const char *path,const char *mode); PerlIO *PerlIO_fdopen(int fd, const char *mode); PerlIO *Pe

perlapi - autogenerated documentation for the perl public API

NAME DESCRIPTION "Gimme" Values Array Manipulation Functions xsubpp variables and internal functions Callback Functions Character case changing Character classification Cloning an interpreter Compile-time scope hooks COP Hint Hashes COP Hint Reading Custom Operators CV Manipulation Functions Debugging Utilities Display and Dump functions Embedding Functions Exception Handling (simple) Macros Global Variables GV Functions Handy Values Hash Manipulation Functions Hook manipulation Lexer interfac

perlamiga - Perl under Amiga OS

NAME NOTE SYNOPSIS DESCRIPTIONPrerequisites for Compiling Perl on AmigaOS Starting Perl programs under AmigaOS Shortcomings of Perl under AmigaOS INSTALLATION Accessing documentationManpages for Perl on AmigaOS Perl HTML Documentation on AmigaOS Perl GNU Info Files on AmigaOS Perl LaTeX Documentation on AmigaOS BUILDING PERL ON AMIGAOSBuild Prerequisites for Perl on AmigaOS Getting the Perl Source for AmigaOS Making Perl on AmigaOS Testing Perl on AmigaOS Installing the built Perl on Amiga

perlaix - Perl version 5 on IBM AIX (UNIX) systems

NAME DESCRIPTIONCompiling Perl 5 on AIX Supported Compilers Incompatibility with AIX Toolbox lib gdbm Perl 5 was successfully compiled and tested on: Building Dynamic Extensions on AIX Using Large Files with Perl Threaded Perl 64-bit Perl Long doubles Recommended Options AIX 5.1/5.2/5.3/6.1 and 7.1 (threaded/32-bit) Recommended Options AIX 5.1/5.2/5.3/6.1 and 7.1 (32-bit) Recommended Options AIX 5.1/5.2/5.3/6.1 and 7.1 (threaded/64-bit) Recommended Options AIX 5.1/5.2/5.3/6.1 and 7.1 (64-bit)

perl - The Perl 5 language interpreter

NAME SYNOPSIS GETTING HELPOverview Tutorials Reference Manual Internals and C Language Interface Miscellaneous Language-Specific Platform-Specific Stubs for Deleted Documents DESCRIPTION AVAILABILITY ENVIRONMENT AUTHOR FILES SEE ALSO DIAGNOSTICS BUGS NOTES NAME perl - The Perl 5 language interpreter SYNOPSIS perl [ -sTtuUWX ] [ -hv ] [ -V[:configvar] ] [ -cw ] [ -d[t][:debugger] ] [ -D[number/list] ] [ -pna ] [ -Fpattern ] [ -l[octal] ] [ -0[octal/hexadecimal] ] [ -Idir ] [ -m[-]module ] [

Parse::CPAN::Meta - Parse META.yml and META.json CPAN metadata files

NAME VERSION SYNOPSIS DESCRIPTION METHODSload_file load_yaml_string load_json_string load_string yaml_backend json_backend FUNCTIONSLoad LoadFile ENVIRONMENTPERL_JSON_BACKEND PERL_YAML_BACKEND SUPPORTBugs / Feature Requests Source Code AUTHORS CONTRIBUTORS COPYRIGHT AND LICENSE NAME Parse::CPAN::Meta - Parse META.yml and META.json CPAN metadata files VERSION version 1.4414 SYNOPSIS ############################################# # In your file --- name: My-Distribution version: 1.23 re

parent - Establish an ISA relationship with base classes at compile time

NAME SYNOPSIS DESCRIPTION DIAGNOSTICS HISTORY CAVEATS SEE ALSO AUTHORS AND CONTRIBUTORS MAINTAINER LICENSE NAME parent - Establish an ISA relationship with base classes at compile time SYNOPSIS package Baz; use parent qw(Foo Bar); DESCRIPTION Allows you to both load one or more modules, while setting up inheritance from those modules at the same time. Mostly similar in effect to package Baz; BEGIN { require Foo; require Bar; push @ISA, qw(Foo Bar); } By default, every base class

Params::Check - A generic input parsing/checking mechanism.

NAME SYNOPSIS DESCRIPTION Template Functionscheck( \%tmpl, \%args, [$verbose] ); allow( $test_me, \@criteria ); last_error() Global Variables$Params::Check::VERBOSE $Params::Check::STRICT_TYPE $Params::Check::ALLOW_UNKNOWN $Params::Check::STRIP_LEADING_DASHES $Params::Check::NO_DUPLICATES $Params::Check::PRESERVE_CASE $Params::Check::ONLY_ALLOW_DEFINED $Params::Check::SANITY_CHECK_TEMPLATE $Params::Check::WARNINGS_FATAL $Params::Check::CALLER_DEPTH Acknowledgements BUG REPORTS AUTHOR COPYRI

package

package NAMESPACE package NAMESPACE VERSION package NAMESPACE BLOCK package NAMESPACE VERSION BLOCK Declares the BLOCK or the rest of the compilation unit as being in the given namespace. The scope of the package declaration is either the supplied code BLOCK or, in the absence of a BLOCK, from the declaration itself through the end of current scope (the enclosing block, file, or eval). That is, the forms without a BLOCK are operative through the end of the current scope, just like the my, state