untie

untie VARIABLE Breaks the binding between a variable and a package. (See tie.) Has no effect if the variable is not tied.

$^L

$^L What formats output as a form feed. The default is \f . You cannot call format_formfeed() on a handle, only as a static method. See IO::Handle.

require

require VERSION require EXPR require Demands a version of Perl specified by VERSION, or demands some semantics specified by EXPR or by $_ if EXPR is not supplied. VERSION may be either a numeric argument such as 5.006, which will be compared to $] , or a literal of the form v5.6.1, which will be compared to $^V (aka $PERL_VERSION). An exception is raised if VERSION is greater than the version of the current Perl interpreter. Compare with use, which can do a similar check at compile time. Specif

Term::ReadLine - Perl interface to various readline packages. If no real package is found, substitutes stubs instead of basic functions.

NAME SYNOPSIS DESCRIPTION Minimal set of supported functions Additional supported functions EXPORTS ENVIRONMENT NAME Term::ReadLine - Perl interface to various readline packages. If no real package is found, substitutes stubs instead of basic functions. SYNOPSIS use Term::ReadLine; my $term = Term::ReadLine->new('Simple Perl calc'); my $prompt = "Enter your arithmetic expression: "; my $OUT = $term->OUT || \*STDOUT; while ( defined ($_ = $term->readline($prompt)) ) { my $res = eval

TAP::Parser::Result - Base class for TAP::Parser output objects

NAME VERSION SYNOPSISDESCRIPTION METHODS Boolean methods SUBCLASSINGExample SEE ALSO NAME TAP::Parser::Result - Base class for TAP::Parser output objects VERSION Version 3.35 SYNOPSIS # abstract class - not meant to be used directly # see TAP::Parser::ResultFactory for preferred usage # directly: use TAP::Parser::Result; my $token = {...}; my $result = TAP::Parser::Result->new( $token ); DESCRIPTION This is a simple base class used by TAP::Parser to store objects that represent the c

perllocale - Perl locale handling (internationalization and localization)

NAME DESCRIPTION WHAT IS A LOCALE PREPARING TO USE LOCALES USING LOCALESThe "use locale" pragma The setlocale function Finding locales LOCALE PROBLEMS Testing for broken locales Temporarily fixing locale problems Permanently fixing locale problems Permanently fixing your system's locale configuration Fixing system locale configuration The localeconv function I18N::Langinfo LOCALE CATEGORIESCategory LC_COLLATE: Collation Category LC_CTYPE: Character Types Category LC_NUMERIC: Numeric Formatti

binmode

binmode FILEHANDLE, LAYER binmode FILEHANDLE Arranges for FILEHANDLE to be read or written in "binary" or "text" mode on systems where the run-time libraries distinguish between binary and text files. If FILEHANDLE is an expression, the value is taken as the name of the filehandle. Returns true on success, otherwise it returns undef and sets $! (errno). On some systems (in general, DOS- and Windows-based systems) binmode() is necessary when you're not working with a text file. For the sake of p

pack

pack TEMPLATE,LIST Takes a LIST of values and converts it into a string using the rules given by the TEMPLATE. The resulting string is the concatenation of the converted values. Typically, each converted value looks like its machine-level representation. For example, on 32-bit machines an integer may be represented by a sequence of 4 bytes, which will in Perl be presented as a string that's 4 characters long. See perlpacktut for an introduction to this function. The TEMPLATE is a sequence of ch

next

next LABEL next EXPR next The next command is like the continue statement in C; it starts the next iteration of the loop: LINE: while (<STDIN>) { next LINE if /^#/; # discard comments #... } Note that if there were a continue block on the above, it would get executed even on discarded lines. If LABEL is omitted, the command refers to the innermost enclosing loop. The next EXPR form, available as of Perl 5.18.0, allows a label name to be computed at run time, being otherwise iden

encoding - allows you to write your script in non-ASCII and non-UTF-8

NAME WARNING SYNOPSIS DESCRIPTION OPTIONSSetting STDIN and/or STDOUT individually The :locale sub-pragma CAVEATSSIDE EFFECTS DO NOT MIX MULTIPLE ENCODINGS Prior to Perl v5.22 Prior to Encode version 1.87 Prior to Perl v5.8.1 EXAMPLE - Greekperl BUGS HISTORY SEE ALSO NAME encoding - allows you to write your script in non-ASCII and non-UTF-8 WARNING This module has been deprecated since perl v5.18. See DESCRIPTION and BUGS. SYNOPSIS use encoding "greek"; # Perl like Greek to you? use encod