perltoot - Links to information on object-oriented programming in Perl

NAME DESCRIPTION NAME perltoot - Links to information on object-oriented programming in Perl DESCRIPTION For information on OO programming with Perl, please see perlootut and perlobj. (The above documents supersede the tutorial that was formerly here in perltoot.)

perlfilter - Source Filters

NAME DESCRIPTION CONCEPTS USING FILTERS WRITING A SOURCE FILTER WRITING A SOURCE FILTER IN C CREATING A SOURCE FILTER AS A SEPARATE EXECUTABLE WRITING A SOURCE FILTER IN PERL USING CONTEXT: THE DEBUG FILTER CONCLUSION LIMITATIONS THINGS TO LOOK OUT FOR REQUIREMENTS AUTHOR Copyrights NAME perlfilter - Source Filters DESCRIPTION This article is about a little-known feature of Perl called source filters. Source filters alter the program text of a module before Perl sees it, much as a C preproces

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

NAME SYNOPSIS DESCRIPTION NAME ExtUtils::MM_BeOS - methods to override UN*X behaviour in ExtUtils::MakeMaker SYNOPSIS use ExtUtils::MM_BeOS; # 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. os_flavor BeOS is BeOS. init_linker libperl.a equivalent to be linked to dynamic extensions. 1; __END__

Archive::Tar::File - a subclass for in-memory extracted file from Archive::Tar

NAME SYNOPSIS DESCRIPTIONAccessors MethodsArchive::Tar::File->new( file => $path ) Archive::Tar::File->new( data => $path, $data, $opt ) Archive::Tar::File->new( chunk => $chunk ) $bool = $file->extract( [ $alternative_name ] ) $path = $file->full_path $bool = $file->validate $bool = $file->has_content $content = $file->get_content $cref = $file->get_content_by_ref $bool = $file->replace_content( $content ) $bool = $file->rename( $new_name ) $bool = $

TAP::Parser::Aggregator - Aggregate TAP::Parser results

NAME VERSION SYNOPSIS DESCRIPTION METHODSClass Methods Instance Methods Summary methods See Also NAME TAP::Parser::Aggregator - Aggregate TAP::Parser results VERSION Version 3.35 SYNOPSIS use TAP::Parser::Aggregator; my $aggregate = TAP::Parser::Aggregator->new; $aggregate->add( 't/00-load.t', $load_parser ); $aggregate->add( 't/10-lex.t', $lex_parser ); my $summary = <<'END_SUMMARY'; Passed: %s Failed: %s Unexpectedly succeeded: %s END_SUMMARY printf $summary, s

not

not These operators are documented in perlop.

TAP::Formatter::Console::ParallelSession - Harness output delegate for parallel console output

NAME VERSION DESCRIPTION SYNOPSIS METHODSClass Methods NAME TAP::Formatter::Console::ParallelSession - Harness output delegate for parallel console output VERSION Version 3.35 DESCRIPTION This provides console orientated output formatting for TAP::Harness when run with multiple jobs in TAP::Harness. SYNOPSIS METHODS Class Methods header Output test preamble result Called by the harness for each line of TAP it receives . clear_for_close close_test

Encode::KR::2022_KR -- internally used by Encode::KR

NAME NAME Encode::KR::2022_KR -- internally used by Encode::KR

lt

lt These operators are documented in perlop.

Smartmatch Operator

Smartmatch Operator First available in Perl 5.10.1 (the 5.10.0 version behaved differently), binary ~~ does a "smartmatch" between its arguments. This is mostly used implicitly in the when construct described in perlsyn, although not all when clauses call the smartmatch operator. Unique among all of Perl's operators, the smartmatch operator can recurse. The smartmatch operator is experimental and its behavior is subject to change. It is also unique in that all other Perl operators impose a cont