perlbot - Links to information on object-oriented programming in Perl

NAME DESCRIPTION NAME perlbot - Links to information on object-oriented programming in Perl DESCRIPTION For information on OO programming with Perl, please see perlootut and perlobj. (The above documents supersede the collection of tricks that was formerly here in perlbot.)

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

pack

pack TEMPLATE,LIST Takes a LIST of values and converts it into a string using the rules given by the TEMPLATE. The resulting string is the concatenation of the converted values. Typically, each converted value looks like its machine-level representation. For example, on 32-bit machines an integer may be represented by a sequence of 4 bytes, which will in Perl be presented as a string that's 4 characters long. See perlpacktut for an introduction to this function. The TEMPLATE is a sequence of ch