$:

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

TAP::Formatter::File - Harness output delegate for file output

NAME VERSION DESCRIPTION SYNOPSISopen_test NAME TAP::Formatter::File - Harness output delegate for file output VERSION Version 3.35 DESCRIPTION This provides file orientated output formatting for TAP::Harness. SYNOPSIS use TAP::Formatter::File; my $harness = TAP::Formatter::File->new( \%args ); open_test See TAP::Formatter::Base

Class::Struct - declare struct-like datatypes as Perl classes

NAME SYNOPSIS DESCRIPTIONThe struct() function Class Creation at Compile Time Element Types and Accessor Methods Initializing with new EXAMPLES Author and Modification History NAME Class::Struct - declare struct-like datatypes as Perl classes SYNOPSIS use Class::Struct; # declare struct, based on array: struct( CLASS_NAME => [ ELEMENT_NAME => ELEMENT_TYPE, ... ]); # declare struct, based on hash: struct( CLASS_NAME => { ELEMENT_NAME => ELEMENT_TYPE, ... }); pack

__FILE__

__FILE__ A special token that returns the name of the file in which it occurs.

mro - Method Resolution Order

NAME SYNOPSIS DESCRIPTION OVERVIEW The C3 MROWhat is C3? How does C3 work Functionsmro::get_linear_isa($classname[, $type]) mro::set_mro ($classname, $type) mro::get_mro($classname) mro::get_isarev($classname) mro::is_universal($classname) mro::invalidate_all_method_caches() mro::method_changed_in($classname) mro::get_pkg_gen($classname) next::method next::can maybe::next::method SEE ALSOThe original Dylan paper Pugs Parrot Python 2.3 MRO related links Class::C3 AUTHOR NAME mro - Method

Additive Operators

Additive Operators Binary "+" returns the sum of two numbers. Binary "-" returns the difference of two numbers. Binary "." concatenates two strings.

ne

ne These operators are documented in perlop.

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

%LAST_MATCH_START

%LAST_MATCH_START

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