Locale::Maketext::GutsLoader - Deprecated module to load Locale::Maketext utf8 code

NAME SYNOPSIS DESCRIPTION NAME Locale::Maketext::GutsLoader - Deprecated module to load Locale::Maketext utf8 code SYNOPSIS # Do this instead please use Locale::Maketext DESCRIPTION Previously Locale::Maketext::Guts performed some magic to load Locale::Maketext when utf8 was unavailable. The subs this module provided were merged back into Locale::Maketext.

Locale::Maketext::Guts - Deprecated module to load Locale::Maketext utf8 code

NAME SYNOPSIS DESCRIPTION NAME Locale::Maketext::Guts - Deprecated module to load Locale::Maketext utf8 code SYNOPSIS # Do this instead please use Locale::Maketext DESCRIPTION Previously Local::Maketext::GutsLoader performed some magic to load Locale::Maketext when utf8 was unavailable. The subs this module provided were merged back into Locale::Maketext

Locale::Maketext - framework for localization

NAME SYNOPSIS DESCRIPTION QUICK OVERVIEW METHODSConstruction Methods The "maketext" Method Utility Methods Language Handle Attributes and Internals LANGUAGE CLASS HIERARCHIES ENTRIES IN EACH LEXICON BRACKET NOTATION AUTO LEXICONS READONLY LEXICONS CONTROLLING LOOKUP FAILURE HOW TO USE MAKETEXT SEE ALSO COPYRIGHT AND DISCLAIMER AUTHOR NAME Locale::Maketext - framework for localization SYNOPSIS package MyProgram; use strict; use MyProgram::L10N; # ...which inherits from Locale::Maketext my $

Locale::Language - standard codes for language identification

NAME SYNOPSIS DESCRIPTION SUPPORTED CODE SETS ROUTINES SEE ALSO AUTHOR COPYRIGHT NAME Locale::Language - standard codes for language identification SYNOPSIS use Locale::Language; $lang = code2language('en'); # $lang gets 'English' $code = language2code('French'); # $code gets 'fr' @codes = all_language_codes(); @names = all_language_names(); DESCRIPTION The Locale::Language module provides access to standard codes used for identifying languages, such as those as defined in IS

Locale::Currency - standard codes for currency identification

NAME SYNOPSIS DESCRIPTION SUPPORTED CODE SETS ROUTINES SEE ALSO AUTHOR COPYRIGHT NAME Locale::Currency - standard codes for currency identification SYNOPSIS use Locale::Currency; $curr = code2currency('usd'); # $curr gets 'US Dollar' $code = currency2code('Euro'); # $code gets 'eur' @codes = all_currency_codes(); @names = all_currency_names(); DESCRIPTION The Locale::Currency module provides access to standard codes used for identifying currencies and funds, such as those define

Locale::Country - standard codes for country identification

NAME SYNOPSIS DESCRIPTION SUPPORTED CODE SETS ROUTINES SEE ALSO AUTHOR COPYRIGHT NAME Locale::Country - standard codes for country identification SYNOPSIS use Locale::Country; $country = code2country('jp' [,CODESET]); # $country gets 'Japan' $code = country2code('Norway' [,CODESET]); # $code gets 'no' @codes = all_country_codes( [CODESET]); @names = all_country_names(); # semi-private routines Locale::Country::alias_code('uk' => 'gb'); Locale::Country::rename_country('g

locale - Perl pragma to use or avoid POSIX locales for built-in operations

NAME SYNOPSIS DESCRIPTION NAME locale - Perl pragma to use or avoid POSIX locales for built-in operations SYNOPSIS @x = sort @y; # Native-platform/Unicode code point sort order { use locale; @x = sort @y; # Locale-defined sort order } @x = sort @y; # Native-platform/Unicode code point sort order # again DESCRIPTION This pragma tells the compiler to enable (or disable) the use of POSIX locales for built-in operations (for example, LC_CTYPE for regular exp

local

local EXPR You really probably want to be using my instead, because local isn't what most people think of as "local". See Private Variables via my() in perlsub for details. A local modifies the listed variables to be local to the enclosing block, file, or eval. If more than one value is listed, the list must be placed in parentheses. See Temporary Values via local() in perlsub for details, including issues with tied arrays and hashes. The delete local EXPR construct can also be used to localize

listen

listen SOCKET,QUEUESIZE Does the same thing that the listen(2) system call does. Returns true if it succeeded, false otherwise. See the example in Sockets: Client/Server Communication in perlipc.

List::Util::XS - Indicate if List::Util was compiled with a C compiler

NAME SYNOPSIS DESCRIPTION SEE ALSO COPYRIGHT NAME List::Util::XS - Indicate if List::Util was compiled with a C compiler SYNOPSIS use List::Util::XS 1.20; DESCRIPTION List::Util::XS can be used as a dependency to ensure List::Util was installed using a C compiler and that the XS version is installed. During installation $List::Util::XS::VERSION will be set to undef if the XS was not compiled. Starting with release 1.23_03, Scalar-List-Util is always using the XS implementation, but for backw