DB - programmatic interface to the Perl debugging API

NAME SYNOPSIS DESCRIPTIONGlobal Variables API Methods Client Callback Methods BUGS AUTHOR NAME DB - programmatic interface to the Perl debugging API SYNOPSIS package CLIENT; use DB; @ISA = qw(DB); # these (inherited) methods can be called by the client CLIENT->register() # register a client package name CLIENT->done() # de-register from the debugging API CLIENT->skippkg('hide::hide') # ask DB not to stop in this package CLIENT->cont([WHERE]) # run some mor

Test::More - yet another framework for writing test scripts

NAME SYNOPSIS DESCRIPTIONI love it when a plan comes together Test names I'm ok, you're not ok. Module tests Complex data structures Diagnostics Conditional tests Test control Discouraged comparison functions Extending and Embedding Test::More EXIT CODES COMPATIBILITY CAVEATS and NOTES HISTORY SEE ALSOALTERNATIVES TESTING FRAMEWORKS ADDITIONAL LIBRARIES OTHER COMPONENTS BUNDLES AUTHORS MAINTAINERS BUGS SOURCE COPYRIGHT NAME Test::More - yet another framework for writing test scripts SYNOP

$^W

$^W The current value of the warning switch, initially true if -w was used, false otherwise, but directly modifiable. See also warnings. Mnemonic: related to the -w switch.

TAP::Parser::ResultFactory - Factory for creating TAP::Parser output objects

NAME SYNOPSIS VERSIONDESCRIPTION METHODS Class Methods SUBCLASSINGExample SEE ALSO NAME TAP::Parser::ResultFactory - Factory for creating TAP::Parser output objects SYNOPSIS use TAP::Parser::ResultFactory; my $token = {...}; my $factory = TAP::Parser::ResultFactory->new; my $result = $factory->make_result( $token ); VERSION Version 3.35 DESCRIPTION This is a simple factory class which returns a TAP::Parser::Result subclass representing the current bit of test data from TAP (usual

DB_File - Perl5 access to Berkeley DB version 1.x

NAME SYNOPSIS DESCRIPTIONUsing DB_File with Berkeley DB version 2 or greater Interface to Berkeley DB Opening a Berkeley DB Database File Default Parameters In Memory Databases DB_HASHA Simple Example DB_BTREEChanging the BTREE sort order Handling Duplicate Keys The get_dup() Method The find_dup() Method The del_dup() Method Matching Partial Keys DB_RECNOThe 'bval' Option A Simple Example Extra RECNO Methods Another Example THE API INTERFACE DBM FILTERSThe Filter An Example -- the NULL

TAP::Formatter::Base - Base class for harness output delegates

NAME VERSION DESCRIPTION SYNOPSIS METHODSClass Methods NAME TAP::Formatter::Base - Base class for harness output delegates VERSION Version 3.35 DESCRIPTION This provides console orientated output formatting for TAP::Harness. SYNOPSIS use TAP::Formatter::Console; my $harness = TAP::Formatter::Console->new( \%args ); METHODS Class Methods new my %args = ( verbose => 1, ) my $harness = TAP::Formatter::Console->new( \%args ); The constructor returns a new TAP::Formatter::Console

autodie - Replace functions with ones that succeed or die with lexical scope

NAME SYNOPSIS DESCRIPTION EXCEPTIONS CATEGORIES FUNCTION SPECIFIC NOTESprint flock system/exec GOTCHAS DIAGNOSTICS BUGSautodie and string eval REPORTING BUGS FEEDBACK AUTHOR LICENSE SEE ALSO ACKNOWLEDGEMENTS NAME autodie - Replace functions with ones that succeed or die with lexical scope SYNOPSIS use autodie; # Recommended: implies 'use autodie qw(:default)' use autodie qw(:all); # Recommended more: defaults and system/exec. use autodie qw(open close); # open/close succe

perlbug - how to submit bug reports on Perl

NAME SYNOPSIS DESCRIPTION OPTIONS AUTHORS SEE ALSO BUGS NAME perlbug - how to submit bug reports on Perl SYNOPSIS perlbug perlbug [ -v ] [ -a address ] [ -s subject ] [ -b body | -f inputfile ] [ -F outputfile ] [ -r returnaddress ] [ -e editor ] [ -c adminaddress | -C ] [ -S ] [ -t ] [ -d ] [ -A ] [ -h ] [ -T ] perlbug [ -v ] [ -r returnaddress ] [ -A ] [ -ok | -okay | -nok | -nokay ] perlthanks DESCRIPTION This program is designed to help you generate and send bug reports (and thank-you not

ucfirst

ucfirst EXPR ucfirst Returns the value of EXPR with the first character in uppercase (titlecase in Unicode). This is the internal function implementing the \u escape in double-quoted strings. If EXPR is omitted, uses $_ . This function behaves the same way under various pragma, such as in a locale, as lc does.

__LINE__

__LINE__ A special token that compiles to the current line number.