Encode::Byte - Single Byte Encodings

NAME SYNOPSIS ABSTRACT DESCRIPTION SEE ALSO NAME Encode::Byte - Single Byte Encodings SYNOPSIS use Encode qw/encode decode/; $greek = encode("iso-8859-7", $utf8); # loads Encode::Byte implicitly $utf8 = decode("iso-8859-7", $greek); # ditto ABSTRACT This module implements various single byte encodings. For most cases it uses \x80-\xff (upper half) to map non-ASCII characters. Encodings supported are as follows. Canonical Alias Description ----------------------

Encode::Alias - alias definitions to encodings

NAME SYNOPSIS DESCRIPTIONAlias overloading SEE ALSO NAME Encode::Alias - alias definitions to encodings SYNOPSIS use Encode; use Encode::Alias; define_alias( "newName" => ENCODING); define_alias( qr/.../ => ENCODING); define_alias( sub { return ENCODING if ...; } ); DESCRIPTION Allows newName to be used as an alias for ENCODING. ENCODING may be either the name of an encoding or an encoding object (as described in Encode). Currently the first argument to define_alias() can be specified

Encode - character encodings in Perl

NAME SYNOPSISTable of Contents DESCRIPTIONTERMINOLOGY THE PERL ENCODING APIBasic methods Listing available encodings Defining Aliases Finding IANA Character Set Registry names Encoding via PerlIO Handling Malformed DataList of _CHECK_ values coderef for CHECK Defining Encodings The UTF8 flagMessing with Perl's Internals UTF-8 vs. utf8 vs. UTF8 SEE ALSO MAINTAINER COPYRIGHT NAME Encode - character encodings in Perl SYNOPSIS use Encode qw(decode encode); $characters = decode('UTF-8', $oc

enc2xs -- Perl Encode Module Generator

NAME SYNOPSIS DESCRIPTION Quick Guide The Unicode Character MapCoping with duplicate mappings Bookmarks SEE ALSO NAME enc2xs -- Perl Encode Module Generator SYNOPSIS enc2xs -[options] enc2xs -M ModName mapfiles... enc2xs -C DESCRIPTION enc2xs builds a Perl extension for use by Encode from either Unicode Character Mapping files (.ucm) or Tcl Encoding Files (.enc). Besides being used internally during the build process of the Encode module, you can use enc2xs to add your own encoding to perl.

elsif

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

elseif

elseif The "else if" keyword is spelled elsif in Perl. There's no elif or else if either. It does parse elseif, but only to warn you about not using it. See the documentation for flow-control keywords in Compound Statements in perlsyn.

else

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

each

each HASH each ARRAY each EXPR When called on a hash in list context, returns a 2-element list consisting of the key and value for the next element of a hash. In Perl 5.12 and later only, it will also return the index and value for the next element of an array so that you can iterate over it; older Perls consider this a syntax error. When called in scalar context, returns only the key (not the value) in a hash, or the index in an array. Hash entries are returned in an apparently random order. T

DynaLoader - Dynamically load C libraries into Perl code

NAME SYNOPSIS DESCRIPTION AUTHOR NAME DynaLoader - Dynamically load C libraries into Perl code SYNOPSIS package YourPackage; require DynaLoader; @ISA = qw(... DynaLoader ...); bootstrap YourPackage; # optional method for 'global' loading sub dl_load_flags { 0x01 } DESCRIPTION This document defines a standard generic interface to the dynamic linking mechanisms available on many platforms. Its primary purpose is to implement automatic dynamic loading of Perl modules. This document serves as b

Dumpvalue - provides screen dump of Perl data.

NAME SYNOPSIS DESCRIPTIONCreation Methods NAME Dumpvalue - provides screen dump of Perl data. SYNOPSIS use Dumpvalue; my $dumper = Dumpvalue->new; $dumper->set(globPrint => 1); $dumper->dumpValue(\*::); $dumper->dumpvars('main'); my $dump = $dumper->stringify($some_value); DESCRIPTION Creation A new dumper is created by a call $d = Dumpvalue->new(option1 => value1, option2 => value2) Recognized options: arrayDepth , hashDepth Print only first N elements of arr