TAP::Parser::IteratorFactory - Figures out which SourceHandler objects to use for a given Source

NAME VERSION SYNOPSIS DESCRIPTION METHODSClass Methods Instance Methods SUBCLASSINGExample AUTHORS ATTRIBUTION SEE ALSO NAME TAP::Parser::IteratorFactory - Figures out which SourceHandler objects to use for a given Source VERSION Version 3.35 SYNOPSIS use TAP::Parser::IteratorFactory; my $factory = TAP::Parser::IteratorFactory->new({ %config }); my $iterator = $factory->make_iterator( $filename ); DESCRIPTION This is a factory class that takes a TAP::Parser::Source and runs it thro

perldsc - Perl Data Structures Cookbook

NAME DESCRIPTION REFERENCES COMMON MISTAKES CAVEAT ON PRECEDENCE WHY YOU SHOULD ALWAYS use strict DEBUGGING CODE EXAMPLES ARRAYS OF ARRAYS Declaration of an ARRAY OF ARRAYS Generation of an ARRAY OF ARRAYS Access and Printing of an ARRAY OF ARRAYS HASHES OF ARRAYS Declaration of a HASH OF ARRAYS Generation of a HASH OF ARRAYS Access and Printing of a HASH OF ARRAYS ARRAYS OF HASHES Declaration of an ARRAY OF HASHES Generation of an ARRAY OF HASHES Access and Printing of an ARRAY OF HAS

ExtUtils::MM_QNX - QNX specific subclass of ExtUtils::MM_Unix

NAME SYNOPSIS DESCRIPTIONOverridden methods AUTHOR SEE ALSO NAME ExtUtils::MM_QNX - QNX specific subclass of ExtUtils::MM_Unix SYNOPSIS Don't use this module directly. Use ExtUtils::MM and let it choose. DESCRIPTION This is a subclass of ExtUtils::MM_Unix which contains functionality for QNX. Unless otherwise stated it works just like ExtUtils::MM_Unix Overridden methods extra_clean_files Add .err files corresponding to each .c file. AUTHOR Michael G Schwern <schwern@pobox.com> with c

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

$%

$% The current page number of the currently selected output channel. Mnemonic: % is page number in nroff.

readline

readline EXPR readline Reads from the filehandle whose typeglob is contained in EXPR (or from *ARGV if EXPR is not provided). In scalar context, each call reads and returns the next line until end-of-file is reached, whereupon the subsequent call returns undef. In list context, reads until end-of-file is reached and returns a list of lines. Note that the notion of "line" used here is whatever you may have defined with $/ or $INPUT_RECORD_SEPARATOR ). See $/ in perlvar. When $/ is set to undef,

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 ----------------------

$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.