UNITCHECK

UNITCHECK These compile phase keywords are documented in BEGIN, UNITCHECK, CHECK, INIT and END in perlmod.

$!

$! When referenced, $! retrieves the current value of the C errno integer variable. If $! is assigned a numerical value, that value is stored in errno . When referenced as a string, $! yields the system error string corresponding to errno . Many system or library calls set errno if they fail, to indicate the cause of failure. They usually do not set errno to zero if they succeed. This means errno , hence $! , is meaningful only immediately after a failure: if (open my $fh, "<", $filename)

${^UTF8CACHE}

${^UTF8CACHE} This variable controls the state of the internal UTF-8 offset caching code. 1 for on (the default), 0 for off, -1 to debug the caching code by checking all its results against linear scans, and panicking on any discrepancy. This variable was added in Perl v5.8.9. It is subject to change or removal without notice, but is currently used to avoid recalculating the boundaries of multi-byte UTF-8-encoded characters.

qx

qx/STRING/ Generalized quotes. See Quote-Like Operators in perlop.

elsif

elsif These flow-control keywords are documented in Compound Statements in perlsyn.

perlipc - Perl interprocess communication (signals, fifos, pipes, safe subprocesses, sockets, and semaphores)

NAME DESCRIPTION SignalsHandling the SIGHUP Signal in Daemons Deferred Signals (Safe Signals) Named Pipes Using open() for IPCFilehandles Background Processes Complete Dissociation of Child from Parent Safe Pipe Opens Avoiding Pipe Deadlocks Bidirectional Communication with Another Process Bidirectional Communication with Yourself Sockets: Client/Server CommunicationInternet Line Terminators Internet TCP Clients and Servers Unix-Domain TCP Clients and Servers TCP Clients with IO::SocketA

$PERLDB

$PERLDB

IO::Uncompress::AnyInflate - Uncompress zlib-based (zip, gzip) file/buffer

NAME SYNOPSIS DESCRIPTION Functional Interfaceanyinflate $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

C-style Logical Or

C-style Logical Or Binary "||" performs a short-circuit logical OR operation. That is, if the left operand is true, the right operand is not even evaluated. Scalar or list context propagates down to the right operand if it is evaluated.

ExtUtils::Packlist - manage .packlist files

NAME SYNOPSIS DESCRIPTION USAGE FUNCTIONS EXAMPLE AUTHOR NAME ExtUtils::Packlist - manage .packlist files SYNOPSIS use ExtUtils::Packlist; my ($pl) = ExtUtils::Packlist->new('.packlist'); $pl->read('/an/old/.packlist'); my @missing_files = $pl->validate(); $pl->write('/a/new/.packlist'); $pl->{'/some/file/name'}++; or $pl->{'/some/other/file/name'} = { type => 'file', from => '/some/file' }; DESCRIPTION ExtUtils::Packlist provide