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.

Pod::Select, podselect() - extract selected sections of POD from input

NAME SYNOPSIS REQUIRES EXPORTS DESCRIPTION SECTION SPECIFICATIONS OBJECT METHODS *curr_headings()* *select()* *add_selection()* *clear_selections()* *match_section()* *is_selected()* EXPORTED FUNCTIONS *podselect()* PRIVATE METHODS AND DATA SEE ALSO AUTHOR NAME Pod::Select, podselect() - extract selected sections of POD from input SYNOPSIS use Pod::Select; ## Select all the POD sections for each file in @filelist ## and print the result on standard output. podselect(@filelist); ## Same as a

Net::netent - by-name interface to Perl's built-in getnet*() functions

NAME SYNOPSIS DESCRIPTION EXAMPLES NOTE AUTHOR NAME Net::netent - by-name interface to Perl's built-in getnet*() functions SYNOPSIS use Net::netent qw(:FIELDS); getnetbyname("loopback") or die "bad net"; printf "%s is %08X\n", $n_name, $n_net; use Net::netent; $n = getnetbyname("loopback") or die "bad net"; { # there's gotta be a better way, eh? @bytes = unpack("C4", pack("N", $n->net)); shift @bytes while @bytes && $bytes[0] == 0; } printf "%s is %08X [%d.%d.%d.%d]\n

Pod::Simple::PullParserStartToken -- start-tokens from Pod::Simple::PullParser

NAME SYNOPSIS DESCRIPTION SEE ALSO SEE ALSO SUPPORT COPYRIGHT AND DISCLAIMERS AUTHOR NAME Pod::Simple::PullParserStartToken -- start-tokens from Pod::Simple::PullParser SYNOPSIS (See Pod::Simple::PullParser) DESCRIPTION When you do $parser->get_token on a Pod::Simple::PullParser object, 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 start-to

Digest - Modules that calculate message digests

NAME SYNOPSIS DESCRIPTION OO INTERFACE Digest speed SEE ALSO AUTHOR NAME Digest - Modules that calculate message digests SYNOPSIS $md5 = Digest->new("MD5"); $sha1 = Digest->new("SHA-1"); $sha256 = Digest->new("SHA-256"); $sha384 = Digest->new("SHA-384"); $sha512 = Digest->new("SHA-512"); $hmac = Digest->HMAC_MD5($key); DESCRIPTION The Digest:: modules calculate digests, also called "fingerprints" or "hashes", of some data, called a message. The digest is (usually) some sm