IO - load various IO modules

NAME SYNOPSIS DESCRIPTION DEPRECATED NAME IO - load various IO modules SYNOPSIS use IO qw(Handle File); # loads IO modules, here IO::Handle, IO::File use IO; # DEPRECATED DESCRIPTION IO provides a simple mechanism to load several of the IO modules in one go. The IO modules belonging to the core are: IO::Handle IO::Seekable IO::File IO::Pipe IO::Socket IO::Dir IO::Select IO::Poll Some other IO modules don't belong to the perl core but can be loaded as well if they have been i

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

accept

accept NEWSOCKET,GENERICSOCKET Accepts an incoming socket connect, just as accept(2) does. Returns the packed address if it succeeded, false otherwise. See the example in Sockets: Client/Server Communication in perlipc. On systems that support a close-on-exec flag on files, the flag will be set for the newly opened file descriptor, as determined by the value of $^F. See $^F in perlvar.

vars - Perl pragma to predeclare global variable names

NAME SYNOPSIS DESCRIPTION NAME vars - Perl pragma to predeclare global variable names SYNOPSIS use vars qw($frob @mung %seen); DESCRIPTION NOTE: For use with variables in the current package for a single scope, the functionality provided by this pragma has been superseded by our declarations, available in Perl v5.6.0 or later, and use of this pragma is discouraged. See our. This will predeclare all the variables whose names are in the list, allowing you to use them under "use strict", and di

File::Compare - Compare files or filehandles

NAME SYNOPSIS DESCRIPTION RETURN AUTHOR NAME File::Compare - Compare files or filehandles SYNOPSIS use File::Compare; if (compare("file1","file2") == 0) { print "They're equal\n"; } DESCRIPTION The File::Compare::compare function compares the contents of two sources, each of which can be a file or a file handle. It is exported from File::Compare by default. File::Compare::cmp is a synonym for File::Compare::compare. It is exported from File::Compare only by request. File::Compare::com

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

PerlIO::via::QuotedPrint - PerlIO layer for quoted-printable strings

NAME SYNOPSIS VERSION DESCRIPTION REQUIRED MODULES SEE ALSO ACKNOWLEDGEMENTS COPYRIGHT NAME PerlIO::via::QuotedPrint - PerlIO layer for quoted-printable strings SYNOPSIS use PerlIO::via::QuotedPrint; open( my $in, '<:via(QuotedPrint)', 'file.qp' ) or die "Can't open file.qp for reading: $!\n"; open( my $out, '>:via(QuotedPrint)', 'file.qp' ) or die "Can't open file.qp for writing: $!\n"; VERSION This documentation describes version 0.08. DESCRIPTION This module implements a PerlI

$PREMATCH

$PREMATCH

CPAN::Debug - internal debugging for CPAN.pm

NAME LICENSE NAME CPAN::Debug - internal debugging for CPAN.pm LICENSE This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

reverse

reverse LIST In list context, returns a list value consisting of the elements of LIST in the opposite order. In scalar context, concatenates the elements of LIST and returns a string value with all characters in the opposite order. print join(", ", reverse "world", "Hello"); # Hello, world print scalar reverse "dlrow ,", "olleH"; # Hello, world Used without arguments in scalar context, reverse() reverses $_ . $_ = "dlrow ,olleH"; print reverse; # No output, list con