localtime

localtime EXPR localtime Converts a time as returned by the time function to a 9-element list with the time analyzed for the local time zone. Typically used as follows: # 0 1 2 3 4 5 6 7 8 ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time); All list elements are numeric and come straight out of the C `struct tm'. $sec , $min , and $hour are the seconds, minutes, and hours of the specified time. $mday

HANDLE->format_top_name(EXPR)

HANDLE->format_top_name(EXPR)

perlbs2000 - building and installing Perl for BS2000.

NAME SYNOPSIS DESCRIPTIONgzip on BS2000 bison on BS2000 Unpacking Perl Distribution on BS2000 Compiling Perl on BS2000 Testing Perl on BS2000 Installing Perl on BS2000 Using Perl in the Posix-Shell of BS2000 Using Perl in "native" BS2000 Floating point anomalies on BS2000 Using PerlIO and different encodings on ASCII and EBCDIC partitions AUTHORS SEE ALSOMailing list HISTORY NAME perlbs2000 - building and installing Perl for BS2000. This document needs to be updated, but we don't know what

utf8 - Perl pragma to enable/disable UTF-8 (or UTF-EBCDIC) in source code

NAME SYNOPSIS DESCRIPTIONUtility functions BUGS SEE ALSO NAME utf8 - Perl pragma to enable/disable UTF-8 (or UTF-EBCDIC) in source code SYNOPSIS use utf8; no utf8; # Convert the internal representation of a Perl scalar to/from UTF-8. $num_octets = utf8::upgrade($string); $success = utf8::downgrade($string[, $fail_ok]); # Change each character of a Perl scalar to/from a series of # characters that represent the UTF-8 bytes of each original character. utf8::encode($string); # "\x{100}"

$ERRNO

$ERRNO

ExtUtils::Embed - Utilities for embedding Perl in C/C++ applications

NAME SYNOPSIS DESCRIPTION @EXPORT FUNCTIONS EXAMPLES SEE ALSO AUTHOR NAME ExtUtils::Embed - Utilities for embedding Perl in C/C++ applications SYNOPSIS perl -MExtUtils::Embed -e xsinit perl -MExtUtils::Embed -e ccopts perl -MExtUtils::Embed -e ldopts DESCRIPTION ExtUtils::Embed provides utility functions for embedding a Perl interpreter and extensions in your C/C++ applications. Typically, an application Makefile will invoke ExtUtils::Embed functions while building your application. @EXPOR

HANDLE->format_name(EXPR)

HANDLE->format_name(EXPR)

UNIVERSAL - base class for ALL classes (blessed references)

NAME SYNOPSIS DESCRIPTION WARNINGS EXPORTS NAME UNIVERSAL - base class for ALL classes (blessed references) SYNOPSIS $is_io = $fd->isa("IO::Handle"); $is_io = Class->isa("IO::Handle"); $does_log = $obj->DOES("Logger"); $does_log = Class->DOES("Logger"); $sub = $obj->can("print"); $sub = Class->can("print"); $sub = eval { $ref->can("fandango") }; $ver = $obj->VERSION; # but never do this! $is_io = UNIVERSAL::isa($fd, "IO::Handle"); $sub

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 $

Scalar::Util - A selection of general-utility scalar subroutines

NAME SYNOPSIS DESCRIPTION FUNCTIONS FOR REFERENCESblessed refaddr reftype weaken unweaken isweak OTHER FUNCTIONSdualvar isdual isvstring looks_like_number openhandle readonly set_prototype tainted DIAGNOSTICS KNOWN BUGS SEE ALSO COPYRIGHT NAME Scalar::Util - A selection of general-utility scalar subroutines SYNOPSIS use Scalar::Util qw(blessed dualvar isdual readonly refaddr reftype tainted weaken isweak isvstring looks_like_number set_prototype);