r2 - 28 Mar 2005 - TWikiContributor
50 Recent Changes in Perldoc/V500808 Web retrieved at 13:57 (GMT)
Statistics for Perldoc/V500808 Web Month: Topic views: Topic saves: File uploads: Most popular topic views: Top contributors for topic ...
Name Type Size Values Tooltip message Arquivo label 40 Nome do arquivo original (incluindo diretorios) Traducao select 1 0, 10 ...
Perldoc V5.8.8 Tradução da documentação do Perl V5.8.8 Mudanças recentes Veja aqui a lista completa de documentos. Status da tradução .progressBar { border: 1px ...
head1 NAME VMS::XSSymSet keep sets of symbol names palatable to the VMS linker head1 SYNOPSIS use VMS::XSSymSet; $set new VMS::XSSymSet; while ($sym make ...
Perl Brasil Perldoc v5.8.8 LayoutTemplate ...
Projeto Gráfico Este tópico contém o projeto de layout da Web Perldoc.V500808 do portal Perl.org.br. Referências ProjetoGrafico Projeto Gráfico da Web YAPC ...
head1 NAME Win32 Interfaces to some Win32 API Functions head1 DESCRIPTION Perl on Win32 contains several functions to access Win32 APIs. Some are included in Perl ...
head1 NAME AnyDBM File provide framework for multiple DBMs NDBM File, DB File, GDBM File, SDBM File, ODBM File various DBM implementations head1 SYNOPSIS ...
head1 NAME ExtUtils::Constant generate XS code to import C header constants head1 SYNOPSIS use ExtUtils::Constant qw (WriteConstants); WriteConstants( ...
head1 NAME perl571delta what's new for perl v5.7.1 head1 DESCRIPTION This document describes differences between the 5.7.0 release and the 5.7.1 release. (To ...
head1 NAME perlreftut Mark's very short tutorial about references head1 DESCRIPTION One of the most important new features in Perl 5 was the capability to manage ...
head1 NAME cpan easily interact with CPAN from the command line head1 SYNOPSIS # with arguments, installs specified modules cpan module name module name .. ...
head1 NAME Tie::Hash, Tie::StdHash, Tie::ExtraHash base class definitions for tied hashes head1 SYNOPSIS package NewHash; require Tie::Hash; @ISA ...
head1 NAME O Generic interface to Perl Compiler backends head1 SYNOPSIS perl MO q, Backend ,OPTIONS foo.pl head1 DESCRIPTION This is the module that is used ...
head1 NAME Test::Harness::TAP Documentation for the TAP format head1 SYNOPSIS TAP, the Test Anything Protocol, is Perl's simple text based interface between testing ...
head1 NAME DBM Filter Filter DBM keys/values head1 SYNOPSIS use DBM Filter ; use SDBM File; # or DB File, or GDBM File, or NDBM File, or ODBM File ...
head1 NAME POSIX Perl interface to IEEE Std 1003.1 head1 SYNOPSIS use POSIX; use POSIX qw(setsid); use POSIX qw(:errno h :fcntl h); printf "EINTR ...
head1 NAME perl581delta what is new for perl v5.8.1 head1 DESCRIPTION This document describes differences between the 5.8.0 release and the 5.8.1 release. If you ...
head1 NAME autouse postpone load of modules until a function is used head1 SYNOPSIS use autouse 'Carp' qw(carp croak); carp "this carp was predeclared and ...
head1 NAME Memoize Make functions faster by trading space for time head1 SYNOPSIS # This is the documentation for Memoize 1.01 use Memoize; memoize('slow ...
head1 NAME Test::Harness::Iterator Internal Test::Harness Iterator head1 SYNOPSIS use Test::Harness::Iterator; my $it Test::Harness::Iterator new(\ TEST ...
head1 NAME perlmod Perl modules (packages and symbol tables) head1 DESCRIPTION head2 Packages X X X X X Perl provides a mechanism for alternative namespaces to ...
head1 NAME File::Spec::Epoc methods for Epoc file specs head1 SYNOPSIS require File::Spec::Epoc; # Done internally by File::Spec if needed head1 DESCRIPTION See ...
head1 NAME locale Perl pragma to use and avoid POSIX locales for built in operations head1 SYNOPSIS @x sort @y; # ASCII sorting order { use locale ...
head1 NAME DB File Perl5 access to Berkeley DB version 1.x head1 SYNOPSIS use DB File; $X tie %hash, 'DB File', $filename, $flags, $mode, $DB HASH ; ...
head1 NAME DirHandle supply object methods for directory handles head1 SYNOPSIS use DirHandle; $d new DirHandle "."; if (defined $d) { while ...
head1 NAME CGI::Cookie Interface to Netscape Cookies head1 SYNOPSIS use CGI qw/:standard/; use CGI::Cookie; # Create new cookies and send them ...
head1 NAME Tie::File Access the lines of a disk file via a Perl array head1 SYNOPSIS # This file documents Tie::File version 0.97 use Tie::File; tie @array, ...
head1 NAME perlartistic the Perl Artistic License head1 SYNOPSIS You can refer to this document in Pod via "L" Or you can see this document by entering "perldoc ...
head1 NAME X X X perlform Perl formats head1 DESCRIPTION Perl has a mechanism to help you generate simple reports and charts. To facilitate this, Perl helps you ...
head1 NAME B CGI routines for writing to the HTTPD (or other) error log head1 SYNOPSIS use CGI::Carp; croak "We're outta here!"; confess "It was my ...
head1 NAME File::Basename Parse file paths into directory, filename and suffix. head1 SYNOPSIS use File::Basename; ($name,$path,$suffix) fileparse($fullname ...
head1 NAME NDBM File Tied access to ndbm files head1 SYNOPSIS use Fcntl; # For O RDWR, O CREAT, etc. use NDBM File; tie(%h, 'NDBM File', 'filename', O RDWR ...
head1 NAME perlhist the Perl history records head1 DESCRIPTION This document aims to record the Perl source code releases. head1 INTRODUCTION Perl history in brief ...
head1 NAME File::Spec::Unix File::Spec for Unix, base for other File::Spec modules head1 SYNOPSIS require File::Spec::Unix; # Done automatically by File::Spec ...
head1 NAME B::Assembler Assemble Perl bytecode head1 SYNOPSIS use B::Assembler qw(newasm endasm assemble); newasm(\ printsub); # sets up for assembly assemble ...
head1 NAME perlstyle Perl style guide head1 DESCRIPTION Each programmer will, of course, have his or her own preferences in regards to formatting, but there are ...
head1 NAME IPC::Open2, open2 open a process for both reading and writing head1 SYNOPSIS use IPC::Open2; $pid open2(\ CHLD OUT, \ CHLD IN, 'some cmd and ...
head1 NAME User::pwent by name interface to Perl's built in getpw () functions head1 SYNOPSIS use User::pwent; $pw getpwnam('daemon') die "No daemon ...
head1 NAME Filter::Simple Simplified source filtering head1 SYNOPSIS # in MyFilter.pm: package MyFilter; use Filter::Simple; FILTER { ... ...
head1 NAME Switch A switch statement for Perl head1 VERSION This document describes version 2.10 of Switch, released Dec 29, 2003. head1 SYNOPSIS use Switch; ...
head1 NAME base Establish IS A relationship with base classes at compile time head1 SYNOPSIS package Baz; use base qw(Foo Bar); head1 DESCRIPTION Allows ...
head1 NAME abbrev create an abbreviation table from a list head1 SYNOPSIS use Text::Abbrev; abbrev $hashref, LIST head1 DESCRIPTION Stores all unambiguous ...
head1 NAME ExtUtils::testlib add blib/ directories to @INC head1 SYNOPSIS use ExtUtils::testlib; head1 DESCRIPTION After an extension has been built and before ...
head1 NAME validate run many filetest checks on a tree head1 SYNOPSIS use File::CheckTree; $num warnings validate( q{ /vmunix ...
head1 NAME h2ph convert .h C header files to .ph Perl header files head1 SYNOPSIS B head1 DESCRIPTION I converts any C header files specified to the corresponding ...
head1 NAME podselect print selected sections of pod documentation on standard output head1 SYNOPSIS B B B BSI IS... head1 OPTIONS AND ARGUMENTS over 8 ...
head1 NAME Pod::Text::Color Convert POD data to formatted color ASCII text head1 SYNOPSIS use Pod::Text::Color; my $parser Pod::Text::Color new (sentence ...
head1 NAME ExtUtils::MM Win32 methods to override UN X behaviour in ExtUtils::MakeMaker head1 SYNOPSIS use ExtUtils::MM Win32; # Done internally by ExtUtils::MakeMaker ...
head1 NAME Carp::Heavy heavy machinery, no user serviceable parts inside cut
Number of topics: 50
See also:
