File::Spec::Cygwin - methods for Cygwin file specs

NAME SYNOPSIS DESCRIPTION COPYRIGHT NAME File::Spec::Cygwin - methods for Cygwin file specs SYNOPSIS require File::Spec::Cygwin; # Done internally by File::Spec if needed DESCRIPTION See File::Spec and File::Spec::Unix. This package overrides the implementation of these methods, not the semantics. This module is still in beta. Cygwin-knowledgeable folks are invited to offer patches and suggestions. canonpath Any \ (backslashes) are converted to / (forward slashes), and then File::Spec::Unix

getpeername

getpeername SOCKET Returns the packed sockaddr address of the other end of the SOCKET connection. use Socket; $hersockaddr = getpeername(SOCK); ($port, $iaddr) = sockaddr_in($hersockaddr); $herhostname = gethostbyaddr($iaddr, AF_INET); $herstraddr = inet_ntoa($iaddr);

Encode::MIME::NAME -- internally used by Encode

NAME SEE ALSO NAME Encode::MIME::NAME -- internally used by Encode SEE ALSO I18N::Charset

ExtUtils::MM_BeOS - methods to override UN*X behaviour in ExtUtils::MakeMaker

NAME SYNOPSIS DESCRIPTION NAME ExtUtils::MM_BeOS - methods to override UN*X behaviour in ExtUtils::MakeMaker SYNOPSIS use ExtUtils::MM_BeOS; # Done internally by ExtUtils::MakeMaker if needed DESCRIPTION See ExtUtils::MM_Unix for a documentation of the methods provided there. This package overrides the implementation of these methods, not the semantics. os_flavor BeOS is BeOS. init_linker libperl.a equivalent to be linked to dynamic extensions. 1; __END__

perltrap - Perl traps for the unwary

NAME DESCRIPTIONAwk Traps C/C++ Traps JavaScript Traps Sed Traps Shell Traps Perl Traps NAME perltrap - Perl traps for the unwary DESCRIPTION The biggest trap of all is forgetting to use warnings or use the -w switch; see warnings and perlrun. The second biggest trap is not making your entire program runnable under use strict . The third biggest trap is not reading the list of changes in this version of Perl; see perldelta. Awk Traps Accustomed awk users should take special note of the foll

perlfaq - frequently asked questions about Perl

NAME VERSION DESCRIPTIONWhere to find the perlfaq How to use the perlfaq How to contribute to the perlfaq What if my question isn't answered in the FAQ? TABLE OF CONTENTS THE QUESTIONSthe perlfaq1 manpage: General Questions About Perl the perlfaq2 manpage: Obtaining and Learning about Perl the perlfaq3 manpage: Programming Tools the perlfaq4 manpage: Data Manipulation the perlfaq5 manpage: Files and Formats the perlfaq6 manpage: Regular Expressions the perlfaq7 manpage: General Perl Language

my

my VARLIST my TYPE VARLIST my VARLIST : ATTRS my TYPE VARLIST : ATTRS A my declares the listed variables to be local (lexically) to the enclosing block, file, or eval. If more than one variable is listed, the list must be placed in parentheses. The exact semantics and interface of TYPE and ATTRS are still evolving. TYPE may be a bareword, a constant declared with use constant , or __PACKAGE__. It is currently bound to the use of the fields pragma, and attributes are handled using the attributes

write

write FILEHANDLE write EXPR write Writes a formatted record (possibly multi-line) to the specified FILEHANDLE, using the format associated with that file. By default the format for a file is the one having the same name as the filehandle, but the format for the current output channel (see the select function) may be set explicitly by assigning the name of the format to the $~ variable. Top of form processing is handled automatically: if there is insufficient room on the current page for the for

unshift

unshift ARRAY,LIST unshift EXPR,LIST Does the opposite of a shift. Or the opposite of a push, depending on how you look at it. Prepends list to the front of the array and returns the new number of elements in the array. unshift(@ARGV, '-e') unless $ARGV[0] =~ /^-/; Note the LIST is prepended whole, not one element at a time, so the prepended elements stay in the same order. Use reverse to do the reverse. Starting with Perl 5.14, unshift can take a scalar EXPR, which must hold a reference to an

TAP::Parser::IteratorFactory - Figures out which SourceHandler objects to use for a given Source

NAME VERSION SYNOPSIS DESCRIPTION METHODSClass Methods Instance Methods SUBCLASSINGExample AUTHORS ATTRIBUTION SEE ALSO NAME TAP::Parser::IteratorFactory - Figures out which SourceHandler objects to use for a given Source VERSION Version 3.35 SYNOPSIS use TAP::Parser::IteratorFactory; my $factory = TAP::Parser::IteratorFactory->new({ %config }); my $iterator = $factory->make_iterator( $filename ); DESCRIPTION This is a factory class that takes a TAP::Parser::Source and runs it thro