Opcode - Disable named opcodes when compiling perl code

NAME SYNOPSIS DESCRIPTION NOTE WARNING Operator Names and Operator Lists Opcode Functions Manipulating Opsets TO DO (maybe) Predefined Opcode Tags SEE ALSO AUTHORS NAME Opcode - Disable named opcodes when compiling perl code SYNOPSIS use Opcode; DESCRIPTION Perl code is always compiled into an internal format before execution. Evaluating perl code (e.g. via "eval" or "do 'file'") causes the code to be compiled into an internal format and then, provided there was no error in the compilation,

CPAN::Version - utility functions to compare CPAN versions

NAME SYNOPSIS DESCRIPTION LICENSE NAME CPAN::Version - utility functions to compare CPAN versions SYNOPSIS use CPAN::Version; CPAN::Version->vgt("1.1","1.1.1"); # 1 bc. 1.1 > 1.001001 CPAN::Version->vlt("1.1","1.1"); # 0 bc. 1.1 not < 1.1 CPAN::Version->vcmp("1.1","1.1.1"); # 1 bc. first is larger CPAN::Version->vcmp("1.1.1","1.1"); # -1 bc. first is smaller CPAN::Version->readable(v1.2.3); # "v1.2.3" CPAN::Version->vstring("v1.2.3"); # v1.2.

y

y/// The transliteration operator. Same as tr///. See Quote-Like Operators in perlop.

TAP::Parser::Iterator - Base class for TAP source iterators

NAME VERSION SYNOPSIS DESCRIPTION METHODSClass Methods Instance Methods SUBCLASSINGExample SEE ALSO NAME TAP::Parser::Iterator - Base class for TAP source iterators VERSION Version 3.35 SYNOPSIS # to subclass: use TAP::Parser::Iterator (); use base 'TAP::Parser::Iterator'; sub _initialize { # see TAP::Object... } sub next_raw { ... } sub wait { ... } sub exit { ... } DESCRIPTION This is a simple iterator base class that defines TAP::Parser's iterator API. Iterators are typicall

Time::Local - efficiently compute time from local and GMT time

NAME SYNOPSIS DESCRIPTION FUNCTIONStimelocal() and timegm() timelocal_nocheck() and timegm_nocheck() Year Value Interpretation Limits of time_t Ambiguous Local Times (DST) Non-Existent Local Times (DST) Negative Epoch Values IMPLEMENTATION BUGS SUPPORT COPYRIGHT AUTHOR NAME Time::Local - efficiently compute time from local and GMT time SYNOPSIS $time = timelocal( $sec, $min, $hour, $mday, $mon, $year ); $time = timegm( $sec, $min, $hour, $mday, $mon, $year ); DESCRIPTION This module provid

Operator Precedence and Associativity

Operator Precedence and Associativity Operator precedence and associativity work in Perl more or less like they do in mathematics. Operator precedence means some operators are evaluated before others. For example, in 2 + 4 * 5 , the multiplication has higher precedence so 4 * 5 is evaluated first yielding 2 + 20 == 22 and not 6 * 5 == 30 . Operator associativity defines what happens if a sequence of the same operators is used one after another: whether the evaluator will evaluate the left oper

Pod::Perldoc::ToText - let Perldoc render Pod as plaintext

NAME SYNOPSIS DESCRIPTION CAVEAT SEE ALSO COPYRIGHT AND DISCLAIMERS AUTHOR NAME Pod::Perldoc::ToText - let Perldoc render Pod as plaintext SYNOPSIS perldoc -o text Some::Modulename DESCRIPTION This is a "plug-in" class that allows Perldoc to use Pod::Text as a formatter class. It supports the following options, which are explained in Pod::Text: alt, indent, loose, quotes, sentence, width For example: perldoc -o text -w indent:5 Some::Modulename CAVEAT This module may change to use a differe

The Arrow Operator

The Arrow Operator "-> " is an infix dereference operator, just as it is in C and C++. If the right side is either a [...] , {...} , or a (...) subscript, then the left side must be either a hard or symbolic reference to an array, a hash, or a subroutine respectively. (Or technically speaking, a location capable of holding a hard reference, if it's an array or hash reference being used for assignment.) See perlreftut and perlref. Otherwise, the right side is a method name or a simple scalar

ExtUtils::MM_VOS - VOS specific subclass of ExtUtils::MM_Unix

NAME SYNOPSIS DESCRIPTIONOverridden methods AUTHOR SEE ALSO NAME ExtUtils::MM_VOS - VOS specific subclass of ExtUtils::MM_Unix SYNOPSIS Don't use this module directly. Use ExtUtils::MM and let it choose. DESCRIPTION This is a subclass of ExtUtils::MM_Unix which contains functionality for VOS. Unless otherwise stated it works just like ExtUtils::MM_Unix Overridden methods extra_clean_files Cleanup VOS core files AUTHOR Michael G Schwern <schwern@pobox.com> with code from ExtUtils::MM_U

perlpacktut - tutorial on pack and unpack

NAME DESCRIPTION The Basic Principle Packing Text Packing NumbersIntegers Unpacking a Stack Frame How to Eat an Egg on a Net Byte-order modifiers Floating point Numbers Exotic TemplatesBit Strings Uuencoding Doing Sums Unicode Another Portable Binary Encoding Template Grouping Lengths and WidthsString Lengths Dynamic Templates Counting Repetitions Intel HEX Packing and Unpacking C StructuresThe Alignment Pit Dealing with Endian-ness Alignment, Take 2 Alignment, Take 3 Pointers for How to