Memoize::Storable - store Memoized data in Storable database

NAME DESCRIPTION NAME Memoize::Storable - store Memoized data in Storable database DESCRIPTION See Memoize.

TAP::Parser::Iterator::Array - Iterator for array-based TAP sources

NAME VERSION SYNOPSIS DESCRIPTION METHODSClass Methods Instance Methods ATTRIBUTION SEE ALSO NAME TAP::Parser::Iterator::Array - Iterator for array-based TAP sources VERSION Version 3.35 SYNOPSIS use TAP::Parser::Iterator::Array; my @data = ('foo', 'bar', baz'); my $it = TAP::Parser::Iterator::Array->new(\@data); my $line = $it->next; DESCRIPTION This is a simple iterator wrapper for arrays of scalar content, used by TAP::Parser. Unless you're writing a plugin or subclassing, y

redo

redo LABEL redo EXPR redo The redo command restarts the loop block without evaluating the conditional again. The continue block, if any, is not executed. If the LABEL is omitted, the command refers to the innermost enclosing loop. The redo EXPR form, available starting in Perl 5.18.0, allows a label name to be computed at run time, and is otherwise identical to redo LABEL . Programs that want to lie to themselves about what was just input normally use this command: # a simpleminded Pascal comme

Term::ANSIColor - Color screen output using ANSI escape sequences

NAME SYNOPSIS DESCRIPTIONSupported Colors Function Interface Constant Interface The Color Stack DIAGNOSTICS ENVIRONMENT COMPATIBILITY RESTRICTIONS NOTES AUTHORS COPYRIGHT AND LICENSE SEE ALSO NAME Term::ANSIColor - Color screen output using ANSI escape sequences SYNOPSIS use Term::ANSIColor; print color('bold blue'); print "This text is bold blue.\n"; print color('reset'); print "This text is normal.\n"; print colored("Yellow on magenta.", 'yellow on_magenta'), "\n"; print "This text is nor

perlexperiment - A listing of experimental features in Perl

NAME DESCRIPTIONCurrent experiments Accepted features Removed features SEE ALSO AUTHORS COPYRIGHT LICENSE NAME perlexperiment - A listing of experimental features in Perl DESCRIPTION This document lists the current and past experimental features in the perl core. Although all of these are documented with their appropriate topics, this succinct listing gives you an overview and basic facts about their status. So far we've merely tried to find and list the experimental features and infer thei

getservbyname

getservbyname NAME,PROTO

ExtUtils::testlib - add blib/* directories to @INC

NAME SYNOPSIS DESCRIPTION NAME ExtUtils::testlib - add blib/* directories to @INC SYNOPSIS use ExtUtils::testlib; DESCRIPTION After an extension has been built and before it is installed it may be desirable to test it bypassing make test . By adding use ExtUtils::testlib; to a test program the intermediate directories used by make are added to @INC.

$INPLACE_EDIT

$INPLACE_EDIT

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

NAME SYNOPSIS DESCRIPTION EXAMPLES NOTE AUTHOR NAME Net::servent - by-name interface to Perl's built-in getserv*() functions SYNOPSIS use Net::servent; $s = getservbyname(shift || 'ftp') || die "no service"; printf "port for %s is %s, aliases are %s\n", $s->name, $s->port, "@{$s->aliases}"; use Net::servent qw(:FIELDS); getservbyname(shift || 'ftp') || die "no service"; print "port for $s_name is $s_port, aliases are @s_aliases\n"; DESCRIPTION This module's default exports overr

B::Debug - Walk Perl syntax tree, printing debug info about ops

NAME SYNOPSIS DESCRIPTION OPTIONS AUTHOR LICENSE NAME B::Debug - Walk Perl syntax tree, printing debug info about ops SYNOPSIS perl -MO=Debug foo.pl perl -MO=Debug,-exec foo.pl DESCRIPTION See ext/B/README and the newer B::Concise, B::Terse. OPTIONS With option -exec, walks tree in execute order, otherwise in basic order. AUTHOR Malcolm Beattie, mbeattie@sable.ox.ac.uk Reini Urban rurban@cpan.org LICENSE Copyright (c) 1996, 1997 Malcolm Beattie Copyright (c) 2008, 2010, 2013, 2014 Reini Urb