Pod::Simple::PullParserTextToken -- text-tokens from Pod::Simple::PullParser

NAME SYNOPSIS DESCRIPTION SEE ALSO SUPPORT COPYRIGHT AND DISCLAIMERS AUTHOR NAME Pod::Simple::PullParserTextToken -- text-tokens from Pod::Simple::PullParser SYNOPSIS (See Pod::Simple::PullParser) DESCRIPTION When you do $parser->get_token on a Pod::Simple::PullParser, you might get an object of this class. This is a subclass of Pod::Simple::PullParserToken and inherits all its methods, and adds these methods: $token->text This returns the text that this token holds. For example, parsi

CHECK

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

ExtUtils::Liblist - determine libraries to use and how to use them

NAME SYNOPSIS DESCRIPTIONEXTRALIBS LDLOADLIBS and LD_RUN_PATH BSLOADLIBS PORTABILITYVMS implementation Win32 implementation SEE ALSO NAME ExtUtils::Liblist - determine libraries to use and how to use them SYNOPSIS require ExtUtils::Liblist; $MM->ext($potential_libs, $verbose, $need_names); # Usually you can get away with: ExtUtils::Liblist->ext($potential_libs, $verbose, $need_names) DESCRIPTION This utility takes a list of libraries in the form -llib1 -llib2 -llib3 and returns l

Compress::Raw::Zlib - Low-Level Interface to zlib compression library

NAME SYNOPSIS DESCRIPTION Compress::Raw::Zlib::Deflate*($d, $status) = new Compress::Raw::Zlib::Deflate( [OPT] ) * *$status = $d->deflate($input, $output)* *$status = $d->flush($output [, $flush_type]) * *$status = $d->deflateReset() * *$status = $d->deflateParams([OPT])* *$status = $d->deflateTune($good_length, $max_lazy, $nice_length, $max_chain)* *$d->dict_adler()* *$d->crc32()* *$d->adler32()* *$d->msg()* *$d->total_in()* *$d->total_out()* *$d->get_Strat

gt

gt These operators are documented in perlop.

threads::shared - Perl extension for sharing data structures between threads

NAME VERSION SYNOPSIS DESCRIPTION EXPORT FUNCTIONS OBJECTS NOTES WARNINGS BUGS AND LIMITATIONS SEE ALSO AUTHOR LICENSE NAME threads::shared - Perl extension for sharing data structures between threads VERSION This document describes threads::shared version 1.48 SYNOPSIS use threads; use threads::shared; my $var :shared; my %hsh :shared; my @ary :shared; my ($scalar, @array, %hash); share($scalar); share(@array); share(%hash); $var = $scalar_value; $var = $shared_ref_value; $var = shared_cl

ExtUtils::Command::MM - Commands for the MM's to use in Makefiles

NAME SYNOPSIS DESCRIPTION NAME ExtUtils::Command::MM - Commands for the MM's to use in Makefiles SYNOPSIS perl "-MExtUtils::Command::MM" -e "function" "--" arguments... DESCRIPTION FOR INTERNAL USE ONLY! The interface is not stable. ExtUtils::Command::MM encapsulates code which would otherwise have to be done with large "one" liners. Any $(FOO) used in the examples are make variables, not Perl. test_harness test_harness($verbose, @test_libs); Runs the tests on @ARGV via Test::Harness passi

IO::Compress::RawDeflate - Write RFC 1951 files/buffers

NAME SYNOPSIS DESCRIPTION Functional Interfacerawdeflate $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]) deflateParams Importing EXAMPLESApache::GZip Revisited Working with Net::FTP SEE ALSO AUTHOR MODIFICATION HISTORY COPYRIGHT AND LICENSE NAME

IO::Zlib - IO:: style interface to Compress::Zlib

NAME SYNOPSIS DESCRIPTION CONSTRUCTOR OBJECT METHODS USING THE EXTERNAL GZIP CLASS METHODS DIAGNOSTICS SEE ALSO HISTORY COPYRIGHT NAME IO::Zlib - IO:: style interface to Compress::Zlib SYNOPSIS With any version of Perl 5 you can use the basic OO interface: use IO::Zlib; $fh = new IO::Zlib; if ($fh->open("file.gz", "rb")) { print <$fh>; $fh->close; } $fh = IO::Zlib->new("file.gz", "wb9"); if (defined $fh) { print $fh "bar\n"; $fh->close; } $fh = IO::Zlib-&g

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,