TAP::Parser::Source - a TAP source & meta data about it

NAME VERSION SYNOPSIS DESCRIPTION METHODSClass Methods Instance Methods AUTHORS SEE ALSO NAME TAP::Parser::Source - a TAP source & meta data about it VERSION Version 3.35 SYNOPSIS use TAP::Parser::Source; my $source = TAP::Parser::Source->new; $source->raw( \'reference to raw TAP source' ) ->config( \%config ) ->merge( $boolean ) ->switches( \@switches ) ->test_args( \@args ) ->assemble_meta; do { ... } if $source->meta->{is

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.

seek

seek FILEHANDLE,POSITION,WHENCE Sets FILEHANDLE's position, just like the fseek call of stdio . FILEHANDLE may be an expression whose value gives the name of the filehandle. The values for WHENCE are 0 to set the new position in bytes to POSITION; 1 to set it to the current position plus POSITION; and 2 to set it to EOF plus POSITION, typically negative. For WHENCE you may use the constants SEEK_SET , SEEK_CUR , and SEEK_END (start of the file, current position, end of the file) from the Fcntl

$$

$$ The process number of the Perl running this script. Though you can set this variable, doing so is generally discouraged, although it can be invaluable for some testing purposes. It will be reset automatically across fork() calls. Note for Linux and Debian GNU/kFreeBSD users: Before Perl v5.16.0 perl would emulate POSIX semantics on Linux systems using LinuxThreads, a partial implementation of POSIX Threads that has since been superseded by the Native POSIX Thread Library (NPTL). LinuxThread

Term::Complete - Perl word completion module

NAME SYNOPSIS DESCRIPTION DIAGNOSTICS BUGS AUTHOR NAME Term::Complete - Perl word completion module SYNOPSIS $input = Complete('prompt_string', \@completion_list); $input = Complete('prompt_string', @completion_list); DESCRIPTION This routine provides word completion on the list of words in the array (or array ref). The tty driver is put into raw mode and restored using an operating system specific command, in UNIX-like environments stty . The following command characters are defined: <t

Pod::Perldoc::ToPod - let Perldoc render Pod as ... Pod!

NAME SYNOPSIS DESCRIPTION SEE ALSO COPYRIGHT AND DISCLAIMERS AUTHOR NAME Pod::Perldoc::ToPod - let Perldoc render Pod as ... Pod! SYNOPSIS perldoc -opod Some::Modulename (That's currently the same as the following:) perldoc -u Some::Modulename DESCRIPTION This is a "plug-in" class that allows Perldoc to display Pod source as itself! Pretty Zen, huh? Currently this class works by just filtering out the non-Pod stuff from a given input file. SEE ALSO Pod::Perldoc COPYRIGHT AND DISCLAIMERS Cop

Locale::Country - standard codes for country identification

NAME SYNOPSIS DESCRIPTION SUPPORTED CODE SETS ROUTINES SEE ALSO AUTHOR COPYRIGHT NAME Locale::Country - standard codes for country identification SYNOPSIS use Locale::Country; $country = code2country('jp' [,CODESET]); # $country gets 'Japan' $code = country2code('Norway' [,CODESET]); # $code gets 'no' @codes = all_country_codes( [CODESET]); @names = all_country_names(); # semi-private routines Locale::Country::alias_code('uk' => 'gb'); Locale::Country::rename_country('g

Safe - Compile and execute code in restricted compartments

NAME SYNOPSIS DESCRIPTION WARNING METHODSpermit (OP, ...) permit_only (OP, ...) deny (OP, ...) deny_only (OP, ...) trap (OP, ...), untrap (OP, ...) share (NAME, ...) share_from (PACKAGE, ARRAYREF) varglob (VARNAME) reval (STRING, STRICT) rdo (FILENAME) root (NAMESPACE) mask (MASK) wrap_code_ref (CODEREF) wrap_code_refs_within (...) RISKS AUTHOR NAME Safe - Compile and execute code in restricted compartments SYNOPSIS use Safe; $compartment = new Safe; $compartment->permit(qw(time sort :

Memoize::SDBM_File - glue to provide EXISTS for SDBM_File for Storable use

NAME DESCRIPTION NAME Memoize::SDBM_File - glue to provide EXISTS for SDBM_File for Storable use DESCRIPTION See Memoize.

Memoize::NDBM_File - glue to provide EXISTS for NDBM_File for Storable use

NAME DESCRIPTION NAME Memoize::NDBM_File - glue to provide EXISTS for NDBM_File for Storable use DESCRIPTION See Memoize.