Math::BigInt::CalcEmu - Emulate low-level math with BigInt code

NAME SYNOPSIS DESCRIPTION METHODS BUGS SUPPORT LICENSE AUTHORS SEE ALSO NAME Math::BigInt::CalcEmu - Emulate low-level math with BigInt code SYNOPSIS use Math::BigInt::CalcEmu; DESCRIPTION Contains routines that emulate low-level math functions in BigInt, e.g. optional routines the low-level math package does not provide on its own. Will be loaded on demand and called automatically by BigInt. Stuff here is really low-priority to optimize, since it is far better to implement the operation in

perlsource - A guide to the Perl source tree

NAME DESCRIPTION FINDING YOUR WAY AROUNDC code Core modules Tests Documentation Hacking tools and documentation Build system _AUTHORS_ _MANIFEST_ NAME perlsource - A guide to the Perl source tree DESCRIPTION This document describes the layout of the Perl source tree. If you're hacking on the Perl core, this will help you find what you're looking for. FINDING YOUR WAY AROUND The Perl source tree is big. Here's some of the thing you'll find in it: C code The C source code and header files mos

perlrecharclass - Perl Regular Expression Character Classes

NAME DESCRIPTIONThe dot Backslash sequences Bracketed Character Classes NAME perlrecharclass - Perl Regular Expression Character Classes DESCRIPTION The top level documentation about Perl regular expressions is found in perlre. This manual page discusses the syntax and use of character classes in Perl regular expressions. A character class is a way of denoting a set of characters in such a way that one character of the set is matched. It's important to remember that: matching a character

Archive::Tar - module for manipulations of tar archives

NAME SYNOPSIS DESCRIPTION Object MethodsArchive::Tar->new( [$file, $compressed] ) $tar->read ( $filename|$handle, [$compressed, {opt => 'val'}] ) $tar->contains_file( $filename ) $tar->extract( [@filenames] ) $tar->extract_file( $file, [$extract_path] ) $tar->list_files( [\@properties] ) $tar->get_files( [@filenames] ) $tar->get_content( $file ) $tar->replace_content( $file, $content ) $tar->rename( $file, $new_name ) $tar->chmod( $file, $mode ) $tar->cho

HANDLE->format_lines_per_page(EXPR)

HANDLE->format_lines_per_page(EXPR)

getnetent

getnetent

perlopentut - simple recipes for opening files and pipes in Perl

NAME DESCRIPTION Opening Text FilesOpening Text Files for Reading Opening Text Files for Writing Opening Binary Files Opening Pipes Low-level File Opens via sysopen SEE ALSO AUTHOR and COPYRIGHT NAME perlopentut - simple recipes for opening files and pipes in Perl DESCRIPTION Whenever you do I/O on a file in Perl, you do so through what in Perl is called a filehandle. A filehandle is an internal name for an external file. It is the job of the open function to make the association between th

perlos2 - Perl under OS/2, DOS, Win0.3*, Win0.95 and WinNT.

NAME SYNOPSIS DESCRIPTIONTarget Other OSes Prerequisites Starting Perl programs under OS/2 (and DOS and...) Starting OS/2 (and DOS) programs under Perl Frequently asked questions"It does not work" I cannot run external programs I cannot embed perl into my program, or use _perl.dll_ from my program. `` and pipe-open do not work under DOS. Cannot start find.exe "pattern" file INSTALLATIONAutomatic binary installation Manual binary installation *Warning* Accessing documentationOS/2 _.INF_ f

until

until These flow-control keywords are documented in Compound Statements in perlsyn.

die

die LIST die raises an exception. Inside an eval the error message is stuffed into $@ and the eval is terminated with the undefined value. If the exception is outside of all enclosing evals, then the uncaught exception prints LIST to STDERR and exits with a non-zero value. If you need to exit the process with a specific exit code, see exit. Equivalent examples: die "Can't cd to spool: $!\n" unless chdir '/usr/spool/news'; chdir '/usr/spool/news' or die "Can't cd to spool: $!\n" If the last ele