perlnetware - Perl for NetWare

NAME DESCRIPTION BUILDTools & SDK Setup Make Interpreter Extensions INSTALL BUILD NEW EXTENSIONS ACKNOWLEDGEMENTS AUTHORS DATE NAME perlnetware - Perl for NetWare DESCRIPTION This file gives instructions for building Perl 5.7 and above, and also Perl modules for NetWare. Before you start, you may want to read the README file found in the top level directory into which the Perl source code distribution was extracted. Make sure you read and understand the terms under which the software is

IO::Uncompress::Bunzip2 - Read bzip2 files/buffers

NAME SYNOPSIS DESCRIPTION Functional Interfacebunzip2 $input_filename_or_reference => $output_filename_or_reference [, OPTS] Notes Optional Parameters Examples OO InterfaceConstructor Constructor Options Examples Methodsread read getline getc ungetc getHeaderInfo tell eof seek binmode opened autoflush input_line_number fileno close nextStream trailingData Importing EXAMPLESWorking with Net::FTP SEE ALSO AUTHOR MODIFICATION HISTORY COPYRIGHT AND LICENSE NAME IO::Uncompress::Bunzip2 -

bigrat - Transparent BigNumber/BigRational support for Perl

NAME SYNOPSIS DESCRIPTIONModules Used Math Library Sign Methods MATH LIBRARY Caveat Options CAVEATS EXAMPLES LICENSE SEE ALSO AUTHORS NAME bigrat - Transparent BigNumber/BigRational support for Perl SYNOPSIS use bigrat; print 2 + 4.5,"\n"; # BigFloat 6.5 print 1/3 + 1/4,"\n"; # produces 7/12 { no bigrat; print 1/3,"\n"; # 0.33333... } # Import into current package: use bigrat qw/hex oct/; print hex("0x1234567890123490"),"\n"; print oct("01234567890123490"),"\n"; DESCRIPTION Al

Text::Balanced - Extract delimited text sequences from strings.

NAME SYNOPSIS DESCRIPTIONGeneral behaviour in list contexts General behaviour in scalar and void contexts A note about prefixes extract_delimited extract_bracketed extract_variable extract_tagged gen_extract_tagged extract_quotelike extract_quotelike and "here documents" extract_codeblock extract_multiple gen_delimited_pat delimited_pat DIAGNOSTICS AUTHOR BUGS AND IRRITATIONS COPYRIGHT NAME Text::Balanced - Extract delimited text sequences from strings. SYNOPSIS use Text::Balanced qw ( ex

perlglossary - Perl Glossary

NAME VERSION DESCRIPTIONA B C D E F G H I J K L M N O P Q R S T U V W X Y Z AUTHOR AND COPYRIGHT NAME perlglossary - Perl Glossary VERSION version 5.021009 DESCRIPTION A glossary of terms (technical and otherwise) used in the Perl documentation, derived from the Glossary of Programming Perl, Fourth Edition. Words or phrases in bold are defined elsewhere in this glossary. Other useful sources include the Unicode Glossary http://unicode.org/glossary/, the Free On-Line Dictionary of Computing

${^UTF8LOCALE}

${^UTF8LOCALE} This variable indicates whether a UTF-8 locale was detected by perl at startup. This information is used by perl when it's in adjust-utf8ness-to-locale mode (as when run with the -CL command-line switch); see perlrun for more info on this. This variable was added in Perl v5.8.8.

getpwuid

getpwuid UID

defined

defined EXPR defined Returns a Boolean value telling whether EXPR has a value other than the undefined value undef. If EXPR is not present, $_ is checked. Many operations return undef to indicate failure, end of file, system error, uninitialized variable, and other exceptional conditions. This function allows you to distinguish undef from other values. (A simple Boolean test will not distinguish among undef, zero, the empty string, and "0" , which are all equally false.) Note that since undef i

setgrent

setgrent

IO::Handle - supply object methods for I/O handles

NAME SYNOPSIS DESCRIPTION CONSTRUCTOR METHODS NOTE SEE ALSO BUGS HISTORY NAME IO::Handle - supply object methods for I/O handles SYNOPSIS use IO::Handle; $io = IO::Handle->new(); if ($io->fdopen(fileno(STDIN),"r")) { print $io->getline; $io->close; } $io = IO::Handle->new(); if ($io->fdopen(fileno(STDOUT),"w")) { $io->print("Some text\n"); } # setvbuf is not available by default on Perls 5.8.0 and later. use IO::Handle '_IOLBF'; $io->setvbuf($buffer_var,