SEARCH
NEW RPMS
DIRECTORIES
ABOUT
FAQ
VARIOUS
BLOG
DONATE


YUM REPOSITORY

 
 

MAN page from openSUSE Leap 15 perl-Math-BigInt-1.999816-lp150.75.1.noarch.rpm

Math::BigInt::Calc

Section: User Contributed Perl Documentation (3)
Updated: 2018-11-08
Index 

NAME

Math::BigInt::Calc - Pure Perl module to support Math::BigInt 

SYNOPSIS

    # to use it with Math::BigInt    use Math::BigInt lib => 'Calc';    # to use it with Math::BigFloat    use Math::BigFloat lib => 'Calc';    # to use it with Math::BigRat    use Math::BigRat lib => 'Calc';
 

DESCRIPTION

Math::BigInt::Calc inherits from Math::BigInt::Lib.

In this library, the numbers are represented in base B = 10**N, where N is thelargest possible value that does not cause overflow in the intermediatecomputations. The base B elements are stored in an array, with the leastsignificant element stored in array element zero. There are no leading zeroelements, except a single zero element when the number is zero.

For instance, if B = 10000, the number 1234567890 is represented internallyas [7890, 3456, 12]. 

SEE ALSO

Math::BigInt::Lib for a description of the API.

Alternative libraries Math::BigInt::FastCalc, Math::BigInt::GMP, andMath::BigInt::Pari.

Some of the modules that use these libraries Math::BigInt,Math::BigFloat, and Math::BigRat.


 

Index

NAME
SYNOPSIS
DESCRIPTION
SEE ALSO

This document was created byman2html,using the manual pages.