Pod::Simple::PullParserEndToken -- end-tokens from Pod::Simple::PullParser

NAME SYNOPSIS DESCRIPTION SEE ALSO SUPPORT COPYRIGHT AND DISCLAIMERS AUTHOR NAME Pod::Simple::PullParserEndToken -- end-tokens from Pod::Simple::PullParser SYNOPSIS (See Pod::Simple::PullParser) DESCRIPTION When you do $parser->get_token on a Pod::Simple::PullParser, you might get an object of this class. This is a subclass of Pod::Simple::PullParserToken and inherits all its methods, and adds these methods: $token->tagname This returns the tagname for this end-token object. For exampl

TAP::Parser - Parse TAP output

NAME VERSION SYNOPSIS DESCRIPTION METHODSClass Methods Instance Methods INDIVIDUAL RESULTSResult types Common type methods plan methods pragma methods comment methods bailout methods unknown methods test methods TOTAL RESULTSIndividual Results Pragmas Summary Results ignore_exit CALLBACKS TAP GRAMMAR BACKWARDS COMPATIBILITYDifferences SUBCLASSINGParser Components ACKNOWLEDGMENTS AUTHORS BUGS COPYRIGHT & LICENSE NAME TAP::Parser - Parse TAP output VERSION Version 3.35 SYNOPSIS use

$SUBSEP

$SUBSEP

$^C

$^C The current value of the flag associated with the -c switch. Mainly of use with -MO=... to allow code to alter its behavior when being compiled, such as for example to AUTOLOAD at compile time rather than normal, deferred loading. Setting $^C = 1 is similar to calling B::minus_c . This variable was added in Perl v5.6.0.

%LAST_MATCH_START

%LAST_MATCH_START

Test::Harness - Run Perl standard test scripts with statistics

NAME VERSION SYNOPSIS DESCRIPTION FUNCTIONSruntests( @test_files ) execute_tests( tests => \@test_files, out => \*FH ) EXPORT ENVIRONMENT VARIABLES THAT TAP::HARNESS::COMPATIBLE SETS ENVIRONMENT VARIABLES THAT AFFECT TEST::HARNESS Taint Mode SEE ALSO BUGS AUTHORS LICENCE AND COPYRIGHT NAME Test::Harness - Run Perl standard test scripts with statistics VERSION Version 3.35 SYNOPSIS use Test::Harness; runtests(@test_files); DESCRIPTION Although, for historical reasons, the Test::Harne

$:

$: The current set of characters after which a string may be broken to fill continuation fields (starting with ^) in a format. The default is " \n-", to break on a space, newline, or a hyphen. You cannot call format_line_break_characters() on a handle, only as a static method. See IO::Handle. Mnemonic: a "colon" in poetry is a part of a line.

perlrebackslash - Perl Regular Expression Backslash Sequences and Escapes

NAME DESCRIPTIONThe backslash All the sequences and escapes Character Escapes Modifiers Character classes Referencing Assertions Misc NAME perlrebackslash - Perl Regular Expression Backslash Sequences and Escapes DESCRIPTION The top level documentation about Perl regular expressions is found in perlre. This document describes all backslash and escape sequences. After explaining the role of the backslash, it lists all the sequences that have a special meaning in Perl regular expressions (in

$EFFECTIVE_GROUP_ID

$EFFECTIVE_GROUP_ID

perlnumber - semantics of numbers and numeric operations in Perl

NAME SYNOPSIS DESCRIPTION Storing numbers Numeric operators and numeric conversions Flavors of Perl numeric operations AUTHOR SEE ALSO NAME perlnumber - semantics of numbers and numeric operations in Perl SYNOPSIS $n = 1234; # decimal integer $n = 0b1110011; # binary integer $n = 01234; # octal integer $n = 0x1234; # hexadecimal integer $n = 12.34e-56; # exponential notation $n = "-12.34e56"; # number specified as a string $n = "1234"; # number specified as a str