Math::BigRat - Arbitrary big rational numbers

NAME SYNOPSIS DESCRIPTIONMATH LIBRARY METHODSnew() numerator() denominator() parts() numify() as_int()/as_number() as_float() as_hex() as_bin() as_oct() from_hex()/from_bin()/from_oct() length() digit() bnorm() bfac() bround()/round()/bfround() bmod() bneg() is_one() is_zero() is_pos()/is_positive() is_neg()/is_negative() is_int() is_odd() is_even() bceil() bfloor() bsqrt() broot() badd()/bmul()/bsub()/bdiv()/bdec()/binc() copy() bstr()/bsstr() bacmp()/bcmp() blsft()/brsft() bpow() bexp() bno

perlmacosx - Perl under Mac OS X

NAME SYNOPSIS DESCRIPTIONInstallation Prefix SDK support Universal Binary support 64-bit PPC support libperl and Prebinding Updating Apple's Perl Known problems Cocoa Starting From Scratch AUTHOR DATE NAME perlmacosx - Perl under Mac OS X SYNOPSIS This document briefly describes Perl under Mac OS X. curl -O http://www.cpan.org/src/perl-5.22.0.tar.gz tar -xzf perl-5.22.0.tar.gz cd perl-5.22.0 ./Configure -des -Dprefix=/usr/local/ make make test sudo make install DESCRIPTION The latest

sqrt

sqrt EXPR sqrt Return the positive square root of EXPR. If EXPR is omitted, uses $_ . Works only for non-negative operands unless you've loaded the Math::Complex module. use Math::Complex; print sqrt(-4); # prints 2i

Text::Tabs - expand and unexpand tabs like unix expand(1) and unexpand(1)

NAME SYNOPSIS DESCRIPTION EXPORTS EXAMPLE SUBVERSION BUGS LICENSE NAME Text::Tabs - expand and unexpand tabs like unix expand(1) and unexpand(1) SYNOPSIS use Text::Tabs; $tabstop = 4; # default = 8 @lines_without_tabs = expand(@lines_with_tabs); @lines_with_tabs = unexpand(@lines_without_tabs); DESCRIPTION Text::Tabs does most of what the unix utilities expand(1) and unexpand(1) do. Given a line with tabs in it, expand replaces those tabs with the appropriate number of spaces. Given a line

Encode::Encoding - Encode Implementation Base Class

NAME SYNOPSIS DESCRIPTIONMethods you should implement Other methods defined in Encode::Encodings Example: Encode::ROT13 Why the heck Encode API is different?Compiled Encodings SEE ALSO NAME Encode::Encoding - Encode Implementation Base Class SYNOPSIS package Encode::MyEncoding; use parent qw(Encode::Encoding); __PACKAGE__->Define(qw(myCanonical myAlias)); DESCRIPTION As mentioned in Encode, encodings are (in the current implementation at least) defined as objects. The mapping of encod

MIME::Base64 - Encoding and decoding of base64 strings

NAME SYNOPSIS DESCRIPTION EXAMPLES COPYRIGHT SEE ALSO NAME MIME::Base64 - Encoding and decoding of base64 strings SYNOPSIS use MIME::Base64; $encoded = encode_base64('Aladdin:open sesame'); $decoded = decode_base64($encoded); DESCRIPTION This module provides functions to encode and decode strings into and from the base64 encoding specified in RFC 2045 - MIME (Multipurpose Internet Mail Extensions). The base64 encoding is designed to represent arbitrary sequences of octets in a form that nee

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

perlivp - Perl Installation Verification Procedure

NAME SYNOPSIS DESCRIPTION OPTIONS DIAGNOSTICS AUTHOR NAME perlivp - Perl Installation Verification Procedure SYNOPSIS perlivp [-p] [-v] [-h] DESCRIPTION The perlivp program is set up at Perl source code build time to test the Perl version it was built under. It can be used after running: make install (or your platform's equivalent procedure) to verify that perl and its libraries have been installed correctly. A correct installation is verified by output that looks like: ok 1 ok 2 etc. OPTIO

$INPUT_RECORD_SEPARATOR

$INPUT_RECORD_SEPARATOR

Text::Abbrev - abbrev - create an abbreviation table from a list

NAME SYNOPSIS DESCRIPTION EXAMPLE NAME Text::Abbrev - abbrev - create an abbreviation table from a list SYNOPSIS use Text::Abbrev; abbrev $hashref, LIST DESCRIPTION Stores all unambiguous truncations of each element of LIST as keys in the associative array referenced by $hashref . The values are the original list elements. EXAMPLE $hashref = abbrev qw(list edit send abort gripe); %hash = abbrev qw(list edit send abort gripe); abbrev $hashref, qw(list edit send abort gripe); abbrev(*hash,