perlthrtut - Tutorial on threads in Perl

NAME DESCRIPTION What Is A Thread Anyway? Threaded Program ModelsBoss/Worker Work Crew Pipeline What kind of threads are Perl threads? Thread-Safe Modules Thread BasicsBasic Thread Support A Note about the Examples Creating Threads Waiting For A Thread To Exit Ignoring A Thread Process and Thread Termination Threads And DataShared And Unshared Data Thread Pitfalls: Races Synchronization and controlControlling access: lock() A Thread Pitfall: Deadlocks Queues: Passing Data Around Semaphor

Filter::Simple - Simplified source filtering

NAME SYNOPSIS DESCRIPTIONThe Problem A Solution Disabling or changing behaviour All-in-one interface Filtering only specific components of source code Filtering only the code parts of source code Using Filter::Simple with an explicit import subroutine Using Filter::Simple and Exporter together How it works AUTHOR CONTACT COPYRIGHT AND LICENSE NAME Filter::Simple - Simplified source filtering SYNOPSIS # in MyFilter.pm: package MyFilter; use Filter::Simple; FILTER { ... };

break

break Break out of a given() block. This keyword is enabled by the "switch" feature; see feature for more information on "switch" . You can also access it by prefixing it with CORE:: . Alternatively, include a use v5.10 or later to the current scope.

Encode::Byte - Single Byte Encodings

NAME SYNOPSIS ABSTRACT DESCRIPTION SEE ALSO NAME Encode::Byte - Single Byte Encodings SYNOPSIS use Encode qw/encode decode/; $greek = encode("iso-8859-7", $utf8); # loads Encode::Byte implicitly $utf8 = decode("iso-8859-7", $greek); # ditto ABSTRACT This module implements various single byte encodings. For most cases it uses \x80-\xff (upper half) to map non-ASCII characters. Encodings supported are as follows. Canonical Alias Description ----------------------

IO::Uncompress::Gunzip - Read RFC 1952 files/buffers

NAME SYNOPSIS DESCRIPTION Functional Interfacegunzip $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::Uncompress

Parse::CPAN::Meta - Parse META.yml and META.json CPAN metadata files

NAME VERSION SYNOPSIS DESCRIPTION METHODSload_file load_yaml_string load_json_string load_string yaml_backend json_backend FUNCTIONSLoad LoadFile ENVIRONMENTPERL_JSON_BACKEND PERL_YAML_BACKEND SUPPORTBugs / Feature Requests Source Code AUTHORS CONTRIBUTORS COPYRIGHT AND LICENSE NAME Parse::CPAN::Meta - Parse META.yml and META.json CPAN metadata files VERSION version 1.4414 SYNOPSIS ############################################# # In your file --- name: My-Distribution version: 1.23 re

DBM_Filter -- Filter DBM keys/values

NAME SYNOPSIS DESCRIPTION What is a DBM Filter?So what's new? METHODS$db->Filter_Push() / $db->Filter_Key_Push() / $db->Filter_Value_Push() $db->Filter_Pop() $db->Filtered() Writing a FilterImmediate Filters Canned Filters Filters Included NOTESMaintain Round Trip Integrity Don't mix filtered & non-filtered data in the same database file. EXAMPLE SEE ALSO AUTHOR NAME DBM_Filter -- Filter DBM keys/values SYNOPSIS use DBM_Filter ; use SDBM_File; # or DB_File, GDBM_File

Pod::Perldoc::ToTk - let Perldoc use Tk::Pod to render Pod

NAME SYNOPSIS DESCRIPTION SEE ALSO AUTHOR NAME Pod::Perldoc::ToTk - let Perldoc use Tk::Pod to render Pod SYNOPSIS perldoc -o tk Some::Modulename & DESCRIPTION This is a "plug-in" class that allows Perldoc to use Tk::Pod as a formatter class. You have to have installed Tk::Pod first, or this class won't load. SEE ALSO Tk::Pod, Pod::Perldoc AUTHOR Current maintainer: Mark Allen <mallen@cpan.org> Past contributions from: brian d foy <bdfoy@cpan.org> Adriano R. Ferreira <fer

perlclib - Internal replacements for standard C library functions

NAME DESCRIPTIONConventions File Operations File Input and Output File Positioning Memory Management and String Handling Character Class Tests _stdlib.h_ functions Miscellaneous functions SEE ALSO NAME perlclib - Internal replacements for standard C library functions DESCRIPTION One thing Perl porters should note is that perl doesn't tend to use that much of the C standard library internally; you'll see very little use of, for example, the ctype.h functions in there. This is because Perl te

English - use nice English (or awk) names for ugly punctuation variables

NAME SYNOPSIS DESCRIPTION PERFORMANCE NAME English - use nice English (or awk) names for ugly punctuation variables SYNOPSIS use English; use English qw( -no_match_vars ) ; # Avoids regex performance # penalty in perl 5.16 and # earlier ... if ($ERRNO =~ /denied/) { ... } DESCRIPTION This module provides aliases for the built-in variables whose names no one seems to like to read. Variables with side-effects which get tr