IO::Uncompress::RawInflate - Read RFC 1951 files/buffers

NAME SYNOPSIS DESCRIPTION Functional Interfacerawinflate $input_filename_or_reference => $output_filename_or_reference [, OPTS] Notes Optional Parameters Examples OO InterfaceConstructor Constructor Options Examples Methodsread read getline getc ungetc inflateSync getHeaderInfo tell eof seek binmode opened autoflush input_line_number fileno close nextStream trailingData Importing EXAMPLESWorking with Net::FTP SEE ALSO AUTHOR MODIFICATION HISTORY COPYRIGHT AND LICENSE NAME IO::Uncomp

Conditional Operator

Conditional Operator Ternary "?:" is the conditional operator, just as in C. It works much like an if-then-else. If the argument before the ? is true, the argument before the : is returned, otherwise the argument after the : is returned. For example: printf "I have %d dog%s.\n", $n, ($n == 1) ? "" : "s"; Scalar or list context propagates downward into the 2nd or 3rd argument, whichever is selected. $x = $ok ? $y : $z; # get a scalar @x = $ok ? @y : @z; # get an array $x = $ok ? @y : @z;

$`

$` The string preceding whatever was matched by the last successful pattern match, not counting any matches hidden within a BLOCK or eval enclosed by the current BLOCK. See Performance issues above for the serious performance implications of using this variable (even once) in your code. This variable is read-only and dynamically-scoped. Mnemonic: ` often precedes a quoted string.

$.

$. Current line number for the last filehandle accessed. Each filehandle in Perl counts the number of lines that have been read from it. (Depending on the value of $/ , Perl's idea of what constitutes a line may not match yours.) When a line is read from a filehandle (via readline() or <> ), or when tell() or seek() is called on it, $. becomes an alias to the line counter for that filehandle. You can adjust the counter by assigning to $. , but this will not actually move the seek pointer

Devel::SelfStubber - generate stubs for a SelfLoading module

NAME SYNOPSIS DESCRIPTION NAME Devel::SelfStubber - generate stubs for a SelfLoading module SYNOPSIS To generate just the stubs: use Devel::SelfStubber; Devel::SelfStubber->stub('MODULENAME','MY_LIB_DIR'); or to generate the whole module with stubs inserted correctly use Devel::SelfStubber; $Devel::SelfStubber::JUST_STUBS=0; Devel::SelfStubber->stub('MODULENAME','MY_LIB_DIR'); MODULENAME is the Perl module name, e.g. Devel::SelfStubber, NOT 'Devel/SelfStubber' or 'Devel/SelfStubber.pm

Unicode::Normalize - Unicode Normalization Forms

NAME SYNOPSIS DESCRIPTIONNormalization Forms Decomposition and Composition Quick Check Character Data EXPORT CAVEATS AUTHOR SEE ALSO NAME Unicode::Normalize - Unicode Normalization Forms SYNOPSIS (1) using function names exported by default: use Unicode::Normalize; $NFD_string = NFD($string); # Normalization Form D $NFC_string = NFC($string); # Normalization Form C $NFKD_string = NFKD($string); # Normalization Form KD $NFKC_string = NFKC($string); # Normalization Form KC (2) using fun

Net::Cmd - Network Command class (as used by FTP, SMTP etc)

NAME SYNOPSIS DESCRIPTION USER METHODS CLASS METHODS PSEUDO RESPONSES EXPORTS AUTHOR COPYRIGHT NAME Net::Cmd - Network Command class (as used by FTP, SMTP etc) SYNOPSIS use Net::Cmd; @ISA = qw(Net::Cmd); DESCRIPTION Net::Cmd is a collection of methods that can be inherited by a sub class of IO::Handle . These methods implement the functionality required for a command based protocol, for example FTP and SMTP. USER METHODS These methods provide a user interface to the Net::Cmd object. debug

$^E

$^E Error information specific to the current operating system. At the moment, this differs from $! under only VMS, OS/2, and Win32 (and for MacPerl). On all other platforms, $^E is always just the same as $! . Under VMS, $^E provides the VMS status value from the last system error. This is more specific information about the last system error than that provided by $! . This is particularly important when $! is set to EVMSERR. Under OS/2, $^E is set to the error code of the last call to OS/2 A

List::Util - A selection of general-utility list subroutines

NAME SYNOPSIS DESCRIPTION LIST-REDUCTION FUNCTIONS$result = reduce { BLOCK } @list any all none notall first max maxstr min minstr product sum sum0 KEY/VALUE PAIR LIST FUNCTIONSpairgrep pairfirst pairmap pairs pairkeys pairvalues OTHER FUNCTIONSshuffle KNOWN BUGSRT #95409 SUGGESTED ADDITIONS SEE ALSO COPYRIGHT NAME List::Util - A selection of general-utility list subroutines SYNOPSIS use List::Util qw(first max maxstr min minstr reduce shuffle sum); DESCRIPTION List::Util contains a se

h2ph - convert .h C header files to .ph Perl header files

NAME SYNOPSIS DESCRIPTION OPTIONS ENVIRONMENT FILES AUTHOR SEE ALSO DIAGNOSTICS BUGS NAME h2ph - convert .h C header files to .ph Perl header files SYNOPSIS h2ph [-d destination directory] [-r | -a] [-l] [-h] [-e] [-D] [-Q] [headerfiles] DESCRIPTION h2ph converts any C header files specified to the corresponding Perl header file format. It is most easily run while in /usr/include: cd /usr/include; h2ph * sys/* or cd /usr/include; h2ph * sys/* arpa/* netinet/* or cd /usr/include; h2ph -r -l