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

perlrequick - Perl regular expressions quick start

NAME DESCRIPTION The GuideSimple word matching Using character classes Matching this or that Grouping things and hierarchical matching Extracting matches Matching repetitions More matching Search and replace The split operator use re 'strict' BUGS SEE ALSO AUTHOR AND COPYRIGHTAcknowledgments NAME perlrequick - Perl regular expressions quick start DESCRIPTION This page covers the very basics of understanding, creating and using regular expressions ('regexes') in Perl. The Guide Simple word

perlfreebsd - Perl version 5 on FreeBSD systems

NAME DESCRIPTIONFreeBSD core dumps from readdir_r with ithreads $^X doesn't always contain a full path in FreeBSD AUTHOR NAME perlfreebsd - Perl version 5 on FreeBSD systems DESCRIPTION This document describes various features of FreeBSD that will affect how Perl version 5 (hereafter just Perl) is compiled and/or runs. FreeBSD core dumps from readdir_r with ithreads When perl is configured to use ithreads, it will use re-entrant library calls in preference to non-re-entrant versions. There

TAP::Formatter::File::Session - Harness output delegate for file output

NAME VERSION DESCRIPTION METHODSresult close_test NAME TAP::Formatter::File::Session - Harness output delegate for file output VERSION Version 3.35 DESCRIPTION This provides file orientated output formatting for TAP::Harness. It is particularly important when running with parallel tests, as it ensures that test results are not interleaved, even when run verbosely. METHODS result Stores results for later output, all together. close_test When the test file finishes, outputs the summary, toget

seekdir

seekdir DIRHANDLE,POS Sets the current position for the readdir routine on DIRHANDLE. POS must be a value returned by telldir. seekdir also has the same caveats about possible directory compaction as the corresponding system library routine.

${^ENCODING}

${^ENCODING} DEPRECATED!!! The object reference to the Encode object that is used to convert the source code to Unicode. Thanks to this variable your Perl script does not have to be written in UTF-8. Default is undef. Setting this variable to any other value than undef is deprecated due to fundamental defects in its design and implementation. It is planned to remove it from a future Perl version. Its purpose was to allow your non-ASCII Perl scripts to not have to be written in UTF-8; this was

POSIX - Perl interface to IEEE Std 1003.1

NAME SYNOPSIS DESCRIPTION CAVEATS FUNCTIONS CLASSESPOSIX::SigAction POSIX::SigRt POSIX::SigSet POSIX::Termios PATHNAME CONSTANTS POSIX CONSTANTS SYSTEM CONFIGURATION ERRNO FCNTL FLOAT FLOATING-POINT ENVIRONMENT LIMITS LOCALE MATH SIGNAL STAT STDLIB STDIO TIME UNISTD WAIT NAME POSIX - Perl interface to IEEE Std 1003.1 SYNOPSIS use POSIX (); use POSIX qw(setsid); use POSIX qw(:errno_h :fcntl_h); printf "EINTR is %d\n", EINTR; $sess_id = POSIX::setsid(); $fd = POSIX::open(

return

return EXPR return Returns from a subroutine, eval, or do FILE with the value given in EXPR. Evaluation of EXPR may be in list, scalar, or void context, depending on how the return value will be used, and the context may vary from one execution to the next (see wantarray). If no EXPR is given, returns an empty list in list context, the undefined value in scalar context, and (of course) nothing at all in void context. (In the absence of an explicit return, a subroutine, eval, or do FILE automati

rindex

rindex STR,SUBSTR,POSITION rindex STR,SUBSTR Works just like index() except that it returns the position of the last occurrence of SUBSTR in STR. If POSITION is specified, returns the last occurrence beginning at or before that position.

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