Memoize::AnyDBM_File - glue to provide EXISTS for AnyDBM_File for Storable use

NAME DESCRIPTION NAME Memoize::AnyDBM_File - glue to provide EXISTS for AnyDBM_File for Storable use DESCRIPTION See Memoize.

Net::NNTP - NNTP Client class

NAME SYNOPSIS DESCRIPTION CONSTRUCTOR METHODSExtension methods UNSUPPORTED DEFINITIONS SEE ALSO AUTHOR COPYRIGHT NAME Net::NNTP - NNTP Client class SYNOPSIS use Net::NNTP; $nntp = Net::NNTP->new("some.host.name"); $nntp->quit; # start with SSL, e.g. nntps $nntp = Net::NNTP->new("some.host.name", SSL => 1); # start with plain and upgrade to SSL $nntp = Net::NNTP->new("some.host.name"); $nntp->starttls; DESCRIPTION Net::NNTP is a class implementing a simple NNTP client in

I18N::Langinfo - query locale information

NAME SYNOPSIS DESCRIPTIONEXPORT SEE ALSO AUTHOR COPYRIGHT AND LICENSE NAME I18N::Langinfo - query locale information SYNOPSIS use I18N::Langinfo; DESCRIPTION The langinfo() function queries various locale information that can be used to localize output and user interfaces. The langinfo() requires one numeric argument that identifies the locale constant to query: if no argument is supplied, $_ is used. The numeric constants appropriate to be used as arguments are exportable from I18N::Langin

TAP::Parser::Scheduler - Schedule tests during parallel testing

NAME VERSION SYNOPSIS DESCRIPTION METHODSClass Methods Rules data structure Instance Methods NAME TAP::Parser::Scheduler - Schedule tests during parallel testing VERSION Version 3.35 SYNOPSIS use TAP::Parser::Scheduler; DESCRIPTION METHODS Class Methods new my $sched = TAP::Parser::Scheduler->new(tests => \@tests); my $sched = TAP::Parser::Scheduler->new( tests => [ ['t/test_name.t','Test Description'], ... ], rules => \%rules, ); Given 'tests' and optional 'rules

Net::FTP - FTP Client class

NAME SYNOPSIS DESCRIPTION OVERVIEW CONSTRUCTOR METHODSMethods for the adventurous THE dataconn CLASS UNIMPLEMENTED REPORTING BUGS AUTHOR SEE ALSO USE EXAMPLES CREDITS COPYRIGHT NAME Net::FTP - FTP Client class SYNOPSIS use Net::FTP; $ftp = Net::FTP->new("some.host.name", Debug => 0) or die "Cannot connect to some.host.name: $@"; $ftp->login("anonymous",'-anonymous@') or die "Cannot login ", $ftp->message; $ftp->cwd("/pub") or die "Cannot change working directory ", $f

perlport - Writing portable Perl

NAME DESCRIPTION ISSUESNewlines Numbers endianness and Width Files and Filesystems System Interaction Command names versus file pathnames Networking Interprocess Communication (IPC) External Subroutines (XS) Standard Modules Time and Date Character sets and character encoding Internationalisation System Resources Security Style CPAN Testers PLATFORMSUnix DOS and Derivatives VMS VOS EBCDIC Platforms Acorn RISC OS Other perls FUNCTION IMPLEMENTATIONSAlphabetical Listing of Perl Functions Sup

Pod::Simple::LinkSection -- represent "section" attributes of L codes

NAME SYNOPSIS DESCRIPTION SEE ALSO SUPPORT COPYRIGHT AND DISCLAIMERS AUTHOR NAME Pod::Simple::LinkSection -- represent "section" attributes of L codes SYNOPSIS # a long story DESCRIPTION This class is not of interest to general users. Pod::Simple uses this class for representing the value of the "section" attribute of "L" start-element events. Most applications can just use the normal stringification of objects of this class; they stringify to just the text content of the section, such as "f

TAP::Parser - Parse TAP output

NAME VERSION SYNOPSIS DESCRIPTION METHODSClass Methods Instance Methods INDIVIDUAL RESULTSResult types Common type methods plan methods pragma methods comment methods bailout methods unknown methods test methods TOTAL RESULTSIndividual Results Pragmas Summary Results ignore_exit CALLBACKS TAP GRAMMAR BACKWARDS COMPATIBILITYDifferences SUBCLASSINGParser Components ACKNOWLEDGMENTS AUTHORS BUGS COPYRIGHT & LICENSE NAME TAP::Parser - Parse TAP output VERSION Version 3.35 SYNOPSIS use

perldata - Perl data types

NAME DESCRIPTIONVariable names Identifier parsing Context Scalar values Scalar value constructors List value constructors Subscripts Multi-dimensional array emulation Slices Typeglobs and Filehandles SEE ALSO NAME perldata - Perl data types DESCRIPTION Variable names Perl has three built-in data types: scalars, arrays of scalars, and associative arrays of scalars, known as "hashes". A scalar is a single string (of any size, limited only by the available memory), number, or a refere

SDBM_File - Tied access to sdbm files

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