Search results for "module:Math::BigInt::Calc"
Math::BigInt::Calc - pure Perl module to support Math::BigInt
Math::BigInt::Calc inherits from Math::BigInt::Lib. In this library, the numbers are represented interenally in base B = 10**N, where N is the largest possible integer that does not cause overflow in the intermediate computations. The base B elements...
PJACKLAM/Math-BigInt-2.002001 - 09 Dec 2023 11:32:19 UTC
Math::BigInt::FastCalc - Math::BigInt::Calc with some XS for more speed
Math::BigInt::FastCalc inherits from Math::BigInt::Calc. Provides support for big integer calculations. Not intended to be used by other modules. Other modules which sport the same functions can also be used to support Math::BigInt, like Math::BigInt...
PJACKLAM/Math-BigInt-FastCalc-0.5015 - 20 Sep 2023 18:18:18 UTC
Math::BigInt::Lib - virtual parent class for Math::BigInt libraries
This module provides support for big integer calculations. It is not intended to be used directly, but rather as a parent class for backend libraries used by Math::BigInt, Math::BigFloat, Math::BigRat, and related modules. Other backend libraries inc...
PJACKLAM/Math-BigInt-2.002001 - 09 Dec 2023 11:32:19 UTC
Math::BigInt - arbitrary size integer math package
Math::BigInt provides support for arbitrary precision integers. Overloading is also provided for Perl operators. Input Input values to these routines may be any scalar number or string that looks like a number and represents an integer. Anything that...
PJACKLAM/Math-BigInt-2.002001 - 09 Dec 2023 11:32:19 UTC
Math::BigRat - arbitrary size rational number math package
Math::BigRat complements Math::BigInt and Math::BigFloat by providing support for arbitrary big rational numbers. MATH LIBRARY You can change the underlying module that does the low-level math operations by using: use Math::BigRat try => 'GMP'; Note:...
PJACKLAM/Math-BigInt-2.002001 - 09 Dec 2023 11:32:19 UTC
Math::BigInt::GMP - backend library for Math::BigInt etc. based on GMP
Math::BigInt::GMP is a backend library for Math::BigInt, Math::BigFloat, Math::BigRat and related modules. Math::BigInt::GMP provides support for big integer calculations by means of the GMP C library. See <https://gmplib.org/> for more information a...
PJACKLAM/Math-BigInt-GMP-1.6013 - 20 Sep 2023 18:18:29 UTC
Math::BaseCalc - Convert numbers between various bases
This module facilitates the conversion of numbers between various number bases. You may define your own digit sets, or use any of several predefined digit sets. The to_base() and from_base() methods convert between Perl numbers and strings which repr...
KWILLIAMS/Math-BaseCalc-1.019 - 08 Jun 2017 05:28:22 UTC
Math::BigFloat - arbitrary size floating point math package
Math::BigFloat provides support for arbitrary precision floating point. Overloading is also provided for Perl operators. All operators (including basic math operations) are overloaded if you declare your big floating point numbers as $x = Math::BigFl...
PJACKLAM/Math-BigInt-2.002001 - 09 Dec 2023 11:32:19 UTC
Math::Calculator - a multi-stack calculator class
Math::Calculator is a simple class representing a stack-based calculator. It can have an arbitrary number of stacks....
RJBS/Math-Calculator-1.023 - 31 Dec 2022 18:14:13 UTC
Math::BigInt::Lite - What Math::BigInts are before they become big
Math::BigInt is not very good suited to work with small (read: typical less than 10 digits) numbers, since it has a quite high per-operation overhead and is thus much slower than normal Perl for operations like: my $x = 1 + 2; # fast and correct my $...
PJACKLAM/Math-BigInt-Lite-0.29 - 25 Sep 2023 07:36:20 UTC
Math::BigInt::Pari - a math backend library based on Math::Pari
Math::BigInt::Pari inherits from Math::BigInt::Lib. Provides support for big integer in Math::BigInt et al. calculations via means of Math::Pari, an XS layer on top of the very fast PARI library....
PJACKLAM/Math-BigInt-Pari-1.3012 - 20 Sep 2023 18:18:51 UTC
Math::BigInt::GMPz - a math backend library based on Math::GMPz
Math::BigInt::GMPz is a backend library for Math::BigInt, Math::BigFloat, Math::BigRat and related modules. It is not indended to be used directly. Math::BigInt::GMPz uses Math::GMPz objects for the calculations. Math::GMPz is an XS layer on top of t...
PJACKLAM/Math-BigInt-GMPz-0.0013 - 21 Sep 2023 13:26:39 UTC
Math::Calc::Parser - Parse and evaluate mathematical expressions
Math::Calc::Parser is a simplified mathematical expression evaluator with support for complex and trigonometric operations, implicit multiplication, and perlish "parentheses optional" functions, while being safe for arbitrary user input. It parses in...
DBOOK/Math-Calc-Parser-1.005 - 08 Oct 2019 21:39:58 UTC