ne

ne These operators are documented in perlop.

Test::Harness - Run Perl standard test scripts with statistics

NAME VERSION SYNOPSIS DESCRIPTION FUNCTIONSruntests( @test_files ) execute_tests( tests => \@test_files, out => \*FH ) EXPORT ENVIRONMENT VARIABLES THAT TAP::HARNESS::COMPATIBLE SETS ENVIRONMENT VARIABLES THAT AFFECT TEST::HARNESS Taint Mode SEE ALSO BUGS AUTHORS LICENCE AND COPYRIGHT NAME Test::Harness - Run Perl standard test scripts with statistics VERSION Version 3.35 SYNOPSIS use Test::Harness; runtests(@test_files); DESCRIPTION Although, for historical reasons, the Test::Harne

%LAST_MATCH_START

%LAST_MATCH_START

$^C

$^C The current value of the flag associated with the -c switch. Mainly of use with -MO=... to allow code to alter its behavior when being compiled, such as for example to AUTOLOAD at compile time rather than normal, deferred loading. Setting $^C = 1 is similar to calling B::minus_c . This variable was added in Perl v5.6.0.

SDBM_File - Tied access to sdbm files

NAME SYNOPSIS DESCRIPTIONTie EXPORTS DIAGNOSTICSsdbm store returned -1, errno 22, key "..." at ... BUGS AND WARNINGS NAME SDBM_File - Tied access to sdbm files SYNOPSIS use Fcntl; # For O_RDWR, O_CREAT, etc. use SDBM_File; tie(%h, 'SDBM_File', 'filename', O_RDWR|O_CREAT, 0666) or die "Couldn't tie SDBM file 'filename': $!; aborting"; # Now read and change the hash $h{newkey} = newvalue; print $h{oldkey}; ... untie %h; DESCRIPTION SDBM_File establishes a connection between a Perl ha

$SUBSEP

$SUBSEP

perldata - Perl data types

NAME DESCRIPTIONVariable names Identifier parsing Context Scalar values Scalar value constructors List value constructors Subscripts Multi-dimensional array emulation Slices Typeglobs and Filehandles SEE ALSO NAME perldata - Perl data types DESCRIPTION Variable names Perl has three built-in data types: scalars, arrays of scalars, and associative arrays of scalars, known as "hashes". A scalar is a single string (of any size, limited only by the available memory), number, or a refere

TAP::Parser - Parse TAP output

NAME VERSION SYNOPSIS DESCRIPTION METHODSClass Methods Instance Methods INDIVIDUAL RESULTSResult types Common type methods plan methods pragma methods comment methods bailout methods unknown methods test methods TOTAL RESULTSIndividual Results Pragmas Summary Results ignore_exit CALLBACKS TAP GRAMMAR BACKWARDS COMPATIBILITYDifferences SUBCLASSINGParser Components ACKNOWLEDGMENTS AUTHORS BUGS COPYRIGHT & LICENSE NAME TAP::Parser - Parse TAP output VERSION Version 3.35 SYNOPSIS use

Storable - persistence for Perl data structures

NAME SYNOPSIS DESCRIPTION MEMORY STORE ADVISORY LOCKING SPEED CANONICAL REPRESENTATION CODE REFERENCES FORWARD COMPATIBILITY ERROR REPORTING WIZARDS ONLYHooks Predicates Recursion Deep Cloning Storable magic EXAMPLES SECURITY WARNING WARNING BUGS64 bit data in perl 5.6.0 and 5.6.1 CREDITS AUTHOR SEE ALSO NAME Storable - persistence for Perl data structures SYNOPSIS use Storable; store \%table, 'file'; $hashref = retrieve('file'); use Storable qw(nstore store_fd nstore_fd freeze thaw dclon

FileCache - keep more files open than the system permits

NAME SYNOPSIS DESCRIPTION CAVEATS BUGS NAME FileCache - keep more files open than the system permits SYNOPSIS no strict 'refs'; use FileCache; # or use FileCache maxopen => 16; cacheout $mode, $path; # or cacheout $path; print $path @data; $fh = cacheout $mode, $path; # or $fh = cacheout $path; print $fh @data; DESCRIPTION The cacheout function will make sure that there's a filehandle open for reading or writing available as the pathname you give it. It automatically closes and re-open