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.

Pod::Perldoc::ToRtf - let Perldoc render Pod as RTF

NAME SYNOPSIS DESCRIPTION SEE ALSO COPYRIGHT AND DISCLAIMERS AUTHOR NAME Pod::Perldoc::ToRtf - let Perldoc render Pod as RTF SYNOPSIS perldoc -o rtf Some::Modulename DESCRIPTION This is a "plug-in" class that allows Perldoc to use Pod::Simple::RTF as a formatter class. This is actually a Pod::Simple::RTF subclass, and inherits all its options. You have to have Pod::Simple::RTF installed (from the Pod::Simple dist), or this module won't work. If Perldoc is running under MSWin and uses this cl

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

mkdir

mkdir FILENAME,MASK mkdir FILENAME mkdir Creates the directory specified by FILENAME, with permissions specified by MASK (as modified by umask). If it succeeds it returns true; otherwise it returns false and sets $! (errno). MASK defaults to 0777 if omitted, and FILENAME defaults to $_ if omitted. In general, it is better to create directories with a permissive MASK and let the user modify that with their umask than it is to supply a restrictive MASK and give the user no way to be more permissi

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.

ExtUtils::MM_Win95 - method to customize MakeMaker for Win9X

NAME SYNOPSIS DESCRIPTIONOverridden methods AUTHOR NAME ExtUtils::MM_Win95 - method to customize MakeMaker for Win9X SYNOPSIS You should not be using this module directly. DESCRIPTION This is a subclass of ExtUtils::MM_Win32 containing changes necessary to get MakeMaker playing nice with command.com and other Win9Xisms. Overridden methods Most of these make up for limitations in the Win9x/nmake command shell. Mostly its lack of &&. xs_c The && problem. xs_cpp The &&am

$(

$( The real gid of this process. If you are on a machine that supports membership in multiple groups simultaneously, gives a space separated list of groups you are in. The first number is the one returned by getgid() , and the subsequent ones by getgroups() , one of which may be the same as the first number. However, a value assigned to $( must be a single number used to set the real gid. So the value given by $( should not be assigned back to $( without being forced numeric, such as by adding

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

Thread - Manipulate threads in Perl (for old code only)

NAME DEPRECATED HISTORY SYNOPSIS DESCRIPTION FUNCTIONS METHODS DEFUNCT SEE ALSO NAME Thread - Manipulate threads in Perl (for old code only) DEPRECATED The Thread module served as the frontend to the old-style thread model, called 5005threads, that was introduced in release 5.005. That model was deprecated, and has been removed in version 5.10. For old code and interim backwards compatibility, the Thread module has been reworked to function as a frontend for the new interpreter threads (ithre

delete

delete EXPR Given an expression that specifies an element or slice of a hash, delete deletes the specified elements from that hash so that exists() on that element no longer returns true. Setting a hash element to the undefined value does not remove its key, but deleting it does; see exists. In list context, returns the value or values deleted, or the last such element in scalar context. The return list's length always matches that of the argument list: deleting non-existent elements returns th