App::Prove::State - State storage for the prove command.

NAME VERSION DESCRIPTION SYNOPSIS METHODSClass Methods result_class extensions results commit Instance Methods NAME App::Prove::State - State storage for the prove command. VERSION Version 3.35 DESCRIPTION The prove command supports a --state option that instructs it to store persistent state across runs. This module implements that state and the operations that may be performed on it. SYNOPSIS # Re-run failed tests $ prove --state=failed,save -rbv METHODS Class Methods new Accepts a has

$OUTPUT_RECORD_SEPARATOR

$OUTPUT_RECORD_SEPARATOR

fields - compile-time class fields

NAME SYNOPSIS DESCRIPTION SEE ALSO NAME fields - compile-time class fields SYNOPSIS { package Foo; use fields qw(foo bar _Foo_private); sub new { my Foo $self = shift; unless (ref $self) { $self = fields::new($self); $self->{_Foo_private} = "this is Foo's secret"; } $self->{foo} = 10; $self->{bar} = 20; return $self; } } my $var = Foo->new; $var->{foo} = 42; # this will generate a run-time

Pod::Checker, podchecker() - check pod documents for syntax errors

NAME SYNOPSIS OPTIONS/ARGUMENTSpodchecker() DESCRIPTION DIAGNOSTICSErrors Warnings Hyperlinks RETURN VALUE EXAMPLES INTERFACE AUTHOR NAME Pod::Checker, podchecker() - check pod documents for syntax errors SYNOPSIS use Pod::Checker; $num_errors = podchecker($filepath, $outputpath, %options); my $checker = new Pod::Checker %options; $checker->parse_from_file($filepath, \*STDERR); OPTIONS/ARGUMENTS $filepath is the input POD to read and $outputpath is where to write POD syntax error mes

perlfaq7 - General Perl Language Issues

NAME VERSION DESCRIPTIONCan I get a BNF/yacc/RE for the Perl language? What are all these $@%&* punctuation signs, and how do I know when to use them? Do I always/never have to quote my strings or use semicolons and commas? How do I skip some return values? How do I temporarily block warnings? What's an extension? Why do Perl operators have different precedence than C operators? How do I declare/create a structure? How do I create a module? How do I adopt or take over a module already on C

MIME::QuotedPrint - Encoding and decoding of quoted-printable strings

NAME SYNOPSIS DESCRIPTION COPYRIGHT SEE ALSO NAME MIME::QuotedPrint - Encoding and decoding of quoted-printable strings SYNOPSIS use MIME::QuotedPrint; $encoded = encode_qp($decoded); $decoded = decode_qp($encoded); DESCRIPTION This module provides functions to encode and decode strings into and from the quoted-printable encoding specified in RFC 2045 - MIME (Multipurpose Internet Mail Extensions). The quoted-printable encoding is intended to represent data that largely consists of bytes th

Pod::Simple

SYNOPSIS DESCRIPTION MAIN METHODS SECONDARY METHODS TERTIARY METHODS ENCODING CAVEATS SEE ALSO SUPPORT COPYRIGHT AND DISCLAIMERS AUTHOR SYNOPSIS TODO DESCRIPTION Pod::Simple is a Perl library for parsing text in the Pod ("plain old documentation") markup language that is typically used for writing documentation for Perl and for Perl modules. The Pod format is explained perlpod; the most common formatter is called perldoc . Be sure to read ENCODING if your Pod contains non-ASCII characters. P

TAP::Formatter::Console::Session - Harness output delegate for default console output

NAME VERSION DESCRIPTION clear_for_close close_test header result NAME TAP::Formatter::Console::Session - Harness output delegate for default console output VERSION Version 3.35 DESCRIPTION This provides console orientated output formatting for TAP::Harness. clear_for_close close_test header result

printf

printf FILEHANDLE FORMAT, LIST printf FILEHANDLE printf FORMAT, LIST printf Equivalent to print FILEHANDLE sprintf(FORMAT, LIST) , except that $\ (the output record separator) is not appended. The FORMAT and the LIST are actually parsed as a single list. The first argument of the list will be interpreted as the printf format. This means that printf(@_) will use $_[0] as the format. See sprintf for an explanation of the format argument. If use locale for LC_NUMERIC Look for this throught pod is

IO::Socket - Object interface to socket communications

NAME SYNOPSIS DESCRIPTION CONSTRUCTOR METHODS LIMITATIONS SEE ALSO AUTHOR COPYRIGHT NAME IO::Socket - Object interface to socket communications SYNOPSIS use IO::Socket; DESCRIPTION IO::Socket provides an object interface to creating and using sockets. It is built upon the IO::Handle interface and inherits all the methods defined by IO::Handle. IO::Socket only defines methods for those operations which are common to all types of socket. Operations which are specified to a socket in a particul