IO::Compress::Bzip2 - Write bzip2 files/buffers

NAME SYNOPSIS DESCRIPTION Functional Interfacebzip2 $input_filename_or_reference => $output_filename_or_reference [, OPTS] Notes Optional Parameters Examples OO InterfaceConstructor Constructor Options Examples Methodsprint printf syswrite write flush tell eof seek binmode opened autoflush input_line_number fileno close newStream([OPTS]) Importing EXAMPLESApache::GZip Revisited Working with Net::FTP SEE ALSO AUTHOR MODIFICATION HISTORY COPYRIGHT AND LICENSE NAME IO::Compress::Bzip2

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

IO::Compress::Base - Base Class for IO::Compress modules

NAME SYNOPSIS DESCRIPTION SEE ALSO AUTHOR MODIFICATION HISTORY COPYRIGHT AND LICENSE NAME IO::Compress::Base - Base Class for IO::Compress modules SYNOPSIS use IO::Compress::Base ; DESCRIPTION This module is not intended for direct use in application code. Its sole purpose is to be sub-classed by IO::Compress modules. SEE ALSO Compress::Zlib, IO::Compress::Gzip, IO::Uncompress::Gunzip, IO::Compress::Deflate, IO::Uncompress::Inflate, IO::Compress::RawDeflate, IO::Uncompress::RawInflate, IO::C

Integer Arithmetic

Integer Arithmetic By default, Perl assumes that it must do most of its arithmetic in floating point. But by saying use integer; you may tell the compiler to use integer operations (see integer for a detailed explanation) from here to the end of the enclosing BLOCK. An inner BLOCK may countermand this by saying no integer; which lasts until the end of that BLOCK. Note that this doesn't mean everything is an integer, merely that Perl will use integer operations for arithmetic, comparison, and

instmodsh - A shell to examine installed modules

NAME SYNOPSIS DESCRIPTION SEE ALSO NAME instmodsh - A shell to examine installed modules SYNOPSIS instmodsh DESCRIPTION A little interface to ExtUtils::Installed to examine installed modules, validate your packlists and even create a tarball from an installed module. SEE ALSO ExtUtils::Installed

integer - Perl pragma to use integer arithmetic instead of floating point

NAME SYNOPSIS DESCRIPTION NAME integer - Perl pragma to use integer arithmetic instead of floating point SYNOPSIS use integer; $x = 10/3; # $x is now 3, not 3.33333333333333333 DESCRIPTION This tells the compiler to use integer operations from here to the end of the enclosing BLOCK. On many machines, this doesn't matter a great deal for most computations, but on those without floating point hardware, it can make a big difference in performance. Note that this only affects how most of the ari

INIT

INIT These compile phase keywords are documented in BEGIN, UNITCHECK, CHECK, INIT and END in perlmod.

int

int EXPR int Returns the integer portion of EXPR. If EXPR is omitted, uses $_ . You should not use this function for rounding: one because it truncates towards 0 , and two because machine representations of floating-point numbers can sometimes produce counterintuitive results. For example, int(-6.725/0.025) produces -268 rather than the correct -269; that's because it's really more like -268.99999999999994315658 instead. Usually, the sprintf, printf, or the POSIX::floor and POSIX::ceil function

if

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

import

import LIST There is no builtin import function. It is just an ordinary method (subroutine) defined (or inherited) by modules that wish to export names to another module. The use function calls the import method for the package used. See also use, perlmod, and Exporter.