vmsish - Perl pragma to control VMS-specific language features

NAME SYNOPSIS DESCRIPTION NAME vmsish - Perl pragma to control VMS-specific language features SYNOPSIS use vmsish; use vmsish 'status'; # or '$?' use vmsish 'exit'; use vmsish 'time'; use vmsish 'hushed'; no vmsish 'hushed'; vmsish::hushed($hush); use vmsish; no vmsish 'time'; DESCRIPTION If no import list is supplied, all possible VMS-specific features are assumed. Currently, there are four VMS-specific features available: 'status' (a.k.a '$?'), 'exit', 'time' and 'hushed'. If you're not

join

join EXPR,LIST Joins the separate strings of LIST into a single string with fields separated by the value of EXPR, and returns that new string. Example: $rec = join(':', $login,$passwd,$uid,$gid,$gcos,$home,$shell); Beware that unlike split, join doesn't take a pattern as its first argument. Compare split.

File::Spec - portably perform operations on file names

NAME SYNOPSIS DESCRIPTION METHODS SEE ALSO AUTHOR COPYRIGHT NAME File::Spec - portably perform operations on file names SYNOPSIS use File::Spec; $x=File::Spec->catfile('a', 'b', 'c'); which returns 'a/b/c' under Unix. Or: use File::Spec::Functions; $x = catfile('a', 'b', 'c'); DESCRIPTION This module is designed to support operations commonly performed on file specifications (usually called "file names", but not to be confused with the contents of a file, or Perl's file handles), such

perlpodspec - Plain Old Documentation: format specification and notes

NAME DESCRIPTION Pod Definitions Pod Commands Pod Formatting Codes Notes on Implementing Pod Processors About L<...> Codes About =over...=back Regions About Data Paragraphs and "=begin/=end" Regions SEE ALSO AUTHOR NAME perlpodspec - Plain Old Documentation: format specification and notes DESCRIPTION This document is detailed notes on the Pod markup language. Most people will only have to read perlpod to know how to write in Pod, but this document may answer some incidental questions to

${^WARNING_BITS}

${^WARNING_BITS} The current set of warning checks enabled by the use warnings pragma. It has the same scoping as the $^H and %^H variables. The exact values are considered internal to the warnings pragma and may change between versions of Perl. This variable was added in Perl v5.6.0.

$&amp;

$& The string matched by the last successful pattern match (not counting any matches hidden within a BLOCK or eval() enclosed by the current BLOCK). See Performance issues above for the serious performance implications of using this variable (even once) in your code. This variable is read-only and dynamically-scoped. Mnemonic: like & in some editors.

overloading - perl pragma to lexically control overloading

NAME SYNOPSIS DESCRIPTION NAME overloading - perl pragma to lexically control overloading SYNOPSIS { no overloading; my $str = "$object"; # doesn't call stringification overload } # it's lexical, so this stringifies: warn "$object"; # it can be enabled per op no overloading qw(""); warn "$object"; # and also reenabled use overloading; DESCRIPTION This pragma allows you to lexically disable or enable overloading. no overloading Disables overloading entirely in

subs - Perl pragma to predeclare sub names

NAME SYNOPSIS DESCRIPTION NAME subs - Perl pragma to predeclare sub names SYNOPSIS use subs qw(frob); frob 3..10; DESCRIPTION This will predeclare all the subroutine whose names are in the list, allowing you to use them without parentheses even before they're declared. Unlike pragmas that affect the $^H hints variable, the use vars and use subs declarations are not BLOCK-scoped. They are thus effective for the entire package in which they appear. You may not rescind such declarations with no

ExtUtils::MM_Any - Platform-agnostic MM methods

NAME SYNOPSIS DESCRIPTION METHODSCross-platform helper methods Targets Init methods Tools File::Spec wrappers Misc AUTHOR NAME ExtUtils::MM_Any - Platform-agnostic MM methods SYNOPSIS FOR INTERNAL USE ONLY! package ExtUtils::MM_SomeOS; # Temporarily, you have to subclass both. Put MM_Any first. require ExtUtils::MM_Any; require ExtUtils::MM_Unix; @ISA = qw(ExtUtils::MM_Any ExtUtils::Unix); DESCRIPTION FOR INTERNAL USE ONLY! ExtUtils::MM_Any is a superclass for the ExtUtils::MM_* set of

TAP::Parser::Iterator::Process - Iterator for process-based TAP sources

NAME VERSION SYNOPSIS DESCRIPTION METHODSClass Methods Instance Methods ATTRIBUTION SEE ALSO NAME TAP::Parser::Iterator::Process - Iterator for process-based TAP sources VERSION Version 3.35 SYNOPSIS use TAP::Parser::Iterator::Process; my %args = ( command => ['python', 'setup.py', 'test'], merge => 1, setup => sub { ... }, teardown => sub { ... }, ); my $it = TAP::Parser::Iterator::Process->new(\%args); my $line = $it->next; DESCRIPTION This is a simple iter