$MATCH

$MATCH

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.

length

length EXPR length Returns the length in characters of the value of EXPR. If EXPR is omitted, returns the length of $_ . If EXPR is undefined, returns undef. This function cannot be used on an entire array or hash to find out how many elements these have. For that, use scalar @array and scalar keys %hash , respectively. Like all Perl character operations, length() normally deals in logical characters, not physical bytes. For how many bytes a string encoded as UTF-8 would take up, use length(Enc

$<digits> ($1, $2, ...)

$<digits> ($1, $2, ...) Contains the subpattern from the corresponding set of capturing parentheses from the last successful pattern match, not counting patterns matched in nested blocks that have been exited already. These variables are read-only and dynamically-scoped. Mnemonic: like \digits.

ExtUtils::MM_OS2 - methods to override UN*X behaviour in ExtUtils::MakeMaker

NAME SYNOPSIS DESCRIPTION METHODS NAME ExtUtils::MM_OS2 - methods to override UN*X behaviour in ExtUtils::MakeMaker SYNOPSIS use ExtUtils::MM_OS2; # Done internally by ExtUtils::MakeMaker if needed DESCRIPTION See ExtUtils::MM_Unix for a documentation of the methods provided there. This package overrides the implementation of these methods, not the semantics. METHODS init_dist Define TO_UNIX to convert OS2 linefeeds to Unix style. init_linker os_flavor OS/2 is OS/2

perlsub - Perl subroutines

NAME SYNOPSIS DESCRIPTIONSignatures Private Variables via my() Persistent Private Variables Temporary Values via local() Lvalue subroutines Lexical Subroutines Passing Symbol Table Entries (typeglobs) When to Still Use local() Pass by Reference Prototypes Constant Functions Overriding Built-in Functions Autoloading Subroutine Attributes SEE ALSO NAME perlsub - Perl subroutines SYNOPSIS To declare subroutines: sub NAME; # A "forward" declaration. sub NAME(PROTO); # di

perlfaq8 - System Interaction

NAME VERSION DESCRIPTIONHow do I find out which operating system I'm running under? How come exec() doesn't return? How do I do fancy stuff with the keyboard/screen/mouse? How do I print something out in color? How do I read just one key without waiting for a return key? How do I check whether input is ready on the keyboard? How do I clear the screen? How do I get the screen size? How do I ask the user for a password? How do I read and write the serial port? How do I decode encrypted password

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

Memoize::ExpireFile - test for Memoize expiration semantics

NAME DESCRIPTION NAME Memoize::ExpireFile - test for Memoize expiration semantics DESCRIPTION See Memoize::Expire.