shmread

shmread ID,VAR,POS,SIZE

perlqnx - Perl version 5 on QNX

NAME DESCRIPTIONRequired Software for Compiling Perl on QNX4 Outstanding Issues with Perl on QNX4 QNX auxiliary files Outstanding issues with perl under QNX6 Cross-compilation AUTHOR NAME perlqnx - Perl version 5 on QNX DESCRIPTION As of perl5.7.2 all tests pass under: QNX 4.24G Watcom 10.6 with Beta/970211.wcc.update.tar.F socket3r.lib Nov21 1996. As of perl5.8.1 there is at least one test still failing. Some tests may complain under known circumstances. See below and hints/qnx.sh for mor

File::GlobMapper - Extend File Glob to Allow Input and Output Files

NAME SYNOPSIS DESCRIPTIONBehind The Scenes Limitations Input File Glob Output File Glob Returned Data EXAMPLESA Rename script A few example globmaps SEE ALSO AUTHOR COPYRIGHT AND LICENSE NAME File::GlobMapper - Extend File Glob to Allow Input and Output Files SYNOPSIS use File::GlobMapper qw( globmap ); my $aref = globmap $input => $output or die $File::GlobMapper::Error ; my $gm = new File::GlobMapper $input => $output or die $File::GlobMapper::Error ; DESCRIPTION This m

Memoize - Make functions faster by trading space for time

NAME SYNOPSIS DESCRIPTION DETAILS OPTIONSINSTALL NORMALIZER SCALAR_CACHE, LIST_CACHE OTHER FACILITIESunmemoize flush_cache CAVEATS PERSISTENT CACHE SUPPORT EXPIRATION SUPPORT BUGS MAILING LIST AUTHOR COPYRIGHT AND LICENSE THANK YOU NAME Memoize - Make functions faster by trading space for time SYNOPSIS # This is the documentation for Memoize 1.03 use Memoize; memoize('slow_function'); slow_function(arguments); # Is faster than it was before This is normally all you need to know

$,

$, The output field separator for the print operator. If defined, this value is printed between each of print's arguments. Default is undef. You cannot call output_field_separator() on a handle, only as a static method. See IO::Handle. Mnemonic: what is printed when there is a "," in your print statement.

perlootut - Object-Oriented Programming in Perl Tutorial

NAME DATE DESCRIPTION OBJECT-ORIENTED FUNDAMENTALSObject Class Methods Attributes Polymorphism Inheritance Encapsulation Composition Roles When to Use OO PERL OO SYSTEMSMoose Class::Accessor Class::Tiny Role::Tiny OO System Summary Other OO Systems CONCLUSION NAME perlootut - Object-Oriented Programming in Perl Tutorial DATE This document was created in February, 2011, and the last major revision was in February, 2013. If you are reading this in the future then it's possible that the stat

ExtUtils::MakeMaker::FAQ - Frequently Asked Questions About MakeMaker

NAME DESCRIPTIONModule Installation Common errors and problems Philosophy and History Module Writing XS PATCHING AUTHOR SEE ALSO NAME ExtUtils::MakeMaker::FAQ - Frequently Asked Questions About MakeMaker DESCRIPTION FAQs, tricks and tips for ExtUtils::MakeMaker . Module Installation How do I install a module into my home directory? If you're not the Perl administrator you probably don't have permission to install a module to its default location. Then you should install it for your own use

Pod::Simple::PullParser -- a pull-parser interface to parsing Pod

NAME SYNOPSIS DESCRIPTION METHODS NOTE SEE ALSO SUPPORT COPYRIGHT AND DISCLAIMERS AUTHOR NAME Pod::Simple::PullParser -- a pull-parser interface to parsing Pod SYNOPSIS my $parser = SomePodProcessor->new; $parser->set_source( "whatever.pod" ); $parser->run; Or: my $parser = SomePodProcessor->new; $parser->set_source( $some_filehandle_object ); $parser->run; Or: my $parser = SomePodProcessor->new; $parser->set_source( \$document_source ); $parser->run; Or: my $par

ExtUtils::CBuilder - Compile and link C code for Perl modules

NAME SYNOPSIS DESCRIPTION METHODS TO DO HISTORY SUPPORT AUTHOR COPYRIGHT SEE ALSO NAME ExtUtils::CBuilder - Compile and link C code for Perl modules SYNOPSIS use ExtUtils::CBuilder; my $b = ExtUtils::CBuilder->new(%options); $obj_file = $b->compile(source => 'MyModule.c'); $lib_file = $b->link(objects => $obj_file); DESCRIPTION This module can build the C portions of Perl modules by invoking the appropriate compilers and linkers in a cross-platform manner. It was motivated by

parent - Establish an ISA relationship with base classes at compile time

NAME SYNOPSIS DESCRIPTION DIAGNOSTICS HISTORY CAVEATS SEE ALSO AUTHORS AND CONTRIBUTORS MAINTAINER LICENSE NAME parent - Establish an ISA relationship with base classes at compile time SYNOPSIS package Baz; use parent qw(Foo Bar); DESCRIPTION Allows you to both load one or more modules, while setting up inheritance from those modules at the same time. Mostly similar in effect to package Baz; BEGIN { require Foo; require Bar; push @ISA, qw(Foo Bar); } By default, every base class