$ORS

$ORS

Pod::Simple::TextContent -- get the text content of Pod

NAME SYNOPSIS DESCRIPTION SEE ALSO SUPPORT COPYRIGHT AND DISCLAIMERS AUTHOR NAME Pod::Simple::TextContent -- get the text content of Pod SYNOPSIS TODO perl -MPod::Simple::TextContent -e \ "exit Pod::Simple::TextContent->filter(shift)->any_errata_seen" \ thingy.pod DESCRIPTION This class is that parses Pod and dumps just the text content. It is mainly meant for use by the Pod::Simple test suite, but you may find some other use for it. This is a subclass of Pod::Simple and inherits

$DEBUGGING

$DEBUGGING

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

perlcall - Perl calling conventions from C

NAME DESCRIPTION THE CALL_ FUNCTIONS FLAG VALUESG_VOID G_SCALAR G_ARRAY G_DISCARD G_NOARGS G_EVAL G_KEEPERR Determining the Context EXAMPLESNo Parameters, Nothing Returned Passing Parameters Returning a Scalar Returning a List of Values Returning a List in a Scalar Context Returning Data from Perl via the Parameter List Using G_EVAL Using G_KEEPERR Using call_sv Using call_argv Using call_method Using GIMME_V Using Perl to Dispose of Temporaries Strategies for Storing Callback Context Inform

HANDLE->format_page_number(EXPR)

HANDLE->format_page_number(EXPR)

ExtUtils::CBuilder::Platform::Windows - Builder class for Windows platforms

NAME DESCRIPTION AUTHOR SEE ALSO NAME ExtUtils::CBuilder::Platform::Windows - Builder class for Windows platforms DESCRIPTION This module implements the Windows-specific parts of ExtUtils::CBuilder. Most of the Windows-specific stuff has to do with compiling and linking C code. Currently we support the 3 compilers perl itself supports: MSVC, BCC, and GCC. This module inherits from ExtUtils::CBuilder::Base , so any functionality not implemented here will be implemented there. The interfaces ar

CPAN::Distroprefs -- read and match distroprefs

NAME SYNOPSIS DESCRIPTION INTERFACE RESULTSCommon Errors Successes PREFS LICENSE NAME CPAN::Distroprefs -- read and match distroprefs SYNOPSIS use CPAN::Distroprefs; my %info = (... distribution/environment info ...); my $finder = CPAN::Distroprefs->find($prefs_dir, \%ext_map); while (my $result = $finder->next) { die $result->as_string if $result->is_fatal; warn($result->as_string), next if $result->is_warning; for my $pref (@{ $result->prefs }) {

Range Operators

Range Operators Binary ".." is the range operator, which is really two different operators depending on the context. In list context, it returns a list of values counting (up by ones) from the left value to the right value. If the left value is greater than the right value then it returns the empty list. The range operator is useful for writing foreach (1..10) loops and for doing slice operations on arrays. In the current implementation, no temporary array is created when the range operator is

AutoSplit - split a package for autoloading

NAME SYNOPSIS DESCRIPTIONMultiple packages DIAGNOSTICS AUTHOR COPYRIGHT AND LICENSE NAME AutoSplit - split a package for autoloading SYNOPSIS autosplit($file, $dir, $keep, $check, $modtime); autosplit_lib_modules(@modules); DESCRIPTION This function will split up your program into files that the AutoLoader module can handle. It is used by both the standard perl libraries and by the MakeMaker utility, to automatically configure libraries for autoloading. The autosplit interface splits the s