Pod::ParseUtils - helpers for POD parsing and conversion

NAME SYNOPSIS DESCRIPTIONPod::List Pod::Hyperlink Pod::Cache Pod::Cache::Item AUTHOR SEE ALSO NAME Pod::ParseUtils - helpers for POD parsing and conversion SYNOPSIS use Pod::ParseUtils; my $list = new Pod::List; my $link = Pod::Hyperlink->new('Pod::Parser'); DESCRIPTION NOTE: This module is considered legacy; modern Perl releases (5.18 and higher) are going to remove Pod-Parser from core and use Pod-Simple for all things POD. Pod::ParseUtils contains a few object-oriented helper packag

kill

kill SIGNAL, LIST kill SIGNAL Sends a signal to a list of processes. Returns the number of arguments that were successfully used to signal (which is not necessarily the same as the number of processes actually killed, e.g. where a process group is killed). $cnt = kill 'HUP', $child1, $child2; kill 'KILL', @goners; SIGNAL may be either a signal name (a string) or a signal number. A signal name may start with a SIG prefix, thus FOO and SIGFOO refer to the same signal. The string form of SIGNAL i

Encode::TW - Taiwan-based Chinese Encodings

NAME SYNOPSIS DESCRIPTION NOTES BUGS SEE ALSO NAME Encode::TW - Taiwan-based Chinese Encodings SYNOPSIS use Encode qw/encode decode/; $big5 = encode("big5", $utf8); # loads Encode::TW implicitly $utf8 = decode("big5", $big5); # ditto DESCRIPTION This module implements tradition Chinese charset encodings as used in Taiwan and Hong Kong. Encodings supported are as follows. Canonical Alias Description -------------------------------------------------------------------- big5-eten /\bbig-?5

File::Path - Create or remove directory trees

NAME VERSION SYNOPSIS DESCRIPTIONERROR HANDLING NOTES DIAGNOSTICS SEE ALSO BUGS ACKNOWLEDGEMENTS AUTHORS COPYRIGHT LICENSE NAME File::Path - Create or remove directory trees VERSION This document describes version 2.09 of File::Path, released 2013-01-17. SYNOPSIS use File::Path qw(make_path remove_tree); make_path('foo/bar/baz', '/zug/zwang'); make_path('foo/bar/baz', '/zug/zwang', { verbose => 1, mode => 0711, }); remove_tree('foo/bar/baz', '/zug/zwang'); remove_tree('foo/b

perlxs - XS language reference manual

NAME DESCRIPTIONIntroduction On The Road The Anatomy of an XSUB The Argument Stack The RETVAL Variable Returning SVs, AVs and HVs through RETVAL The MODULE Keyword The PACKAGE Keyword The PREFIX Keyword The OUTPUT: Keyword The NO_OUTPUT Keyword The CODE: Keyword The INIT: Keyword The NO_INIT Keyword The TYPEMAP: Keyword Initializing Function Parameters Default Parameter Values The PREINIT: Keyword The SCOPE: Keyword The INPUT: Keyword The IN/OUTLIST/IN_OUTLIST/OUT/IN_OUT Keywords The length(NA

File::Spec::VMS - methods for VMS file specs

NAME SYNOPSIS DESCRIPTION COPYRIGHT SEE ALSO NAME File::Spec::VMS - methods for VMS file specs SYNOPSIS require File::Spec::VMS; # Done internally by File::Spec if needed DESCRIPTION See File::Spec::Unix for a documentation of the methods provided there. This package overrides the implementation of these methods, not the semantics. The default behavior is to allow either VMS or Unix syntax on input and to return VMS syntax on output unless Unix syntax has been explicitly requested via the DE

Fcntl - load the C Fcntl.h defines

NAME SYNOPSIS DESCRIPTION NOTE EXPORTED SYMBOLS NAME Fcntl - load the C Fcntl.h defines SYNOPSIS use Fcntl; use Fcntl qw(:DEFAULT :flock); DESCRIPTION This module is just a translation of the C fcntl.h file. Unlike the old mechanism of requiring a translated fcntl.ph file, this uses the h2xs program (see the Perl source distribution) and your native C compiler. This means that it has a far more likely chance of getting the numbers right. NOTE Only #define symbols get translated; you must sti

Compress::Zlib - Interface to zlib compression library

NAME SYNOPSIS DESCRIPTIONNotes for users of Compress::Zlib version 1 GZIP INTERFACEExamples Compress::Zlib::memGzip Compress::Zlib::memGunzip COMPRESS/UNCOMPRESS Deflate Interface*($d, $status) = deflateInit( [OPT] )* *($out, $status) = $d->deflate($buffer)* *($out, $status) = $d->flush()* =head2 *($out, $status) = $d->flush($flush_type)* *$status = $d->deflateParams([OPT])* *$d->dict_adler()* *$d->msg()* *$d->total_in()* *$d->total_out()* Example Inflate Interface

B::Showlex - Show lexical variables used in functions or files

NAME SYNOPSIS DESCRIPTION EXAMPLESOPTIONS SEE ALSO TODO AUTHOR NAME B::Showlex - Show lexical variables used in functions or files SYNOPSIS perl -MO=Showlex[,-OPTIONS][,SUBROUTINE] foo.pl DESCRIPTION When a comma-separated list of subroutine names is given as options, Showlex prints the lexical variables used in those subroutines. Otherwise, it prints the file-scope lexicals in the file. EXAMPLES Traditional form: $ perl -MO=Showlex -e 'my ($i,$j,$k)=(1,"foo")' Pad of lexical names for comp

File::Spec::Unix - File::Spec for Unix, base for other File::Spec modules

NAME SYNOPSIS DESCRIPTION METHODS COPYRIGHT SEE ALSO NAME File::Spec::Unix - File::Spec for Unix, base for other File::Spec modules SYNOPSIS require File::Spec::Unix; # Done automatically by File::Spec DESCRIPTION Methods for manipulating file specifications. Other File::Spec modules, such as File::Spec::Mac, inherit from File::Spec::Unix and override specific methods. METHODS canonpath() No physical check on the filesystem, but a logical cleanup of a path. On UNIX eliminates successive sla