The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

Search results for "bigint"

bigint - transparent big integer support for Perl River stage three • 30 direct dependents • 363 total dependents

All numeric literal in the given scope are converted to Math::BigInt objects. Numeric literal that represent non-integers are truncated to an integer. All results of expressions are also truncated to integer. All operators (including basic math opera...

PJACKLAM/bignum-0.67 - 30 Dec 2023 13:48:09 UTC - Search in distribution

FP::BigInt River stage zero No dependents

Loads Math::BigInt, monkey patches "FP_Show_show" and "FP_Equal_equal" methods into it, and exports the "bigint" constructor function....

PFLANZE/FunctionalPerl-0.72.76 - 22 Jan 2023 15:12:41 UTC - Search in distribution

Math::BigInt - arbitrary size integer math package River stage four • 209 direct dependents • 1676 total dependents

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.003002 - 06 Jan 2024 12:38:23 UTC - Search in distribution

Math::BigInt::LTM - Use the libtommath library for Math::BigInt routines River stage three • 62 direct dependents • 246 total dependents

Provides support for big integer calculations by means of the libtommath c-library. *Since: CryptX-0.029*...

MIK/CryptX-0.080 - 04 Oct 2023 11:07:16 UTC - Search in distribution

Math::BigInt::GMP - backend library for Math::BigInt etc. based on GMP River stage two • 12 direct dependents • 24 total dependents

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.7001 - 06 Jan 2024 12:40:12 UTC - Search in distribution

Math::BigInt::GMPz - a math backend library based on Math::GMPz River stage zero No dependents

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.0016 - 06 Jan 2024 12:40:18 UTC - Search in distribution

Math::BigInt::Lite - What Math::BigInts are before they become big River stage one • 1 direct dependent • 2 total dependents

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 - Search in distribution

Math::BigInt::Pari - a math backend library based on Math::Pari River stage zero No dependents

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.3014 - 06 Jan 2024 12:40:20 UTC - Search in distribution

Math::BigInt::Named - Math::BigInt objects that know their name in some languages River stage zero No dependents

This is a subclass of Math::BigInt and adds support for named numbers....

PJACKLAM/Math-BigInt-Named-0.08 - 29 Sep 2021 14:57:16 UTC - Search in distribution

Math::BigInt::Random - arbitrary sized random integers River stage one • 1 direct dependent • 1 total dependent

Random number generator for arbitrarily large integers. Uses the Math::BigInt module to handle the generated values. This module exports a single function called random_bigint, which returns a single random Math::BigInt number of the specified range ...

BILLH/Math-BigInt-Random-0.04 - 20 Apr 2008 15:24:57 UTC - Search in distribution

Math::ModInt::BigInt - modular integer arithmetic, powered by Math::BigInt River stage one • 1 direct dependent • 1 total dependent

Math::ModInt::BigInt is a generic implementation of Math::ModInt for arbitrarily large moduli. Like all Math::ModInt implementations, it is loaded behind the scenes when there is demand for it, without applications needing to worry about it. Note, ho...

MHASCH/Math-ModInt-0.013 - 28 Mar 2021 07:03:09 UTC - Search in distribution

Algorithm::AM::BigInt - Helper functions for AM big integers River stage zero No dependents

AM uses custom 128-bit unsigned integers in its XS code, and these numbers cannot be treated normally in Perl code. This package provides some helper functions for working with these numbers. DETAILS Under the hood, the big integers used by AM are sc...

NGLENN/Algorithm-AM-3.12 - 03 Apr 2021 09:28:33 UTC - Search in distribution

Math::BigInt::BitVect - a math backend library based on Bit::Vector River stage zero No dependents

PJACKLAM/Math-BigInt-BitVect-1.23 - 06 Jan 2024 12:40:01 UTC - Search in distribution

Path::Hilbert::BigInt - A slower, no-frills converter between very large 1D and 2D spaces using the Hilbert curve River stage zero No dependents

See the documentation for Path::Hilbert, except s/Path::Hilbert/Path::Hilbert::BigInt/ as needed....

PWBENNETT/Path-Hilbert-2.000 - 15 Feb 2016 15:25:48 UTC - Search in distribution

Encode::Base58::BigInt - Base58 encodings with BigInt River stage one • 2 direct dependents • 4 total dependents

Encode::Base58::BigInt is a base58 encoder/decoder implementation in Perl. Generated strings excludes confusing characters, "0" and "O" is treated as "D", "l" and "I" is treated as "1"....

SATOH/Encode-Base58-BigInt-0.03 - 09 Mar 2013 14:09:27 UTC - Search in distribution

Eve::PgSqlType::Bigint - a PostgreSQL bigint type. River stage zero No dependents

Eve::PgSqlType::Bigint is a PostgreSQL bigint type adapter class....

ZINIGOR/Eve-0.06 - 05 May 2014 10:32:37 UTC - Search in distribution

Math::BigInt::Constant - arbitrary sized constant integers River stage zero No dependents

With this module you can define constant Math::BigInt objects on a per-object basis. The usual "use Math::BigInt ':constant'" will catch all integer constants in the script at compile time, but will not let you create constant values on the fly, nor ...

PJACKLAM/Math-BigInt-Constant-1.15 - 03 Apr 2023 16:13:56 UTC - Search in distribution

Math::BigInt::FastCalc - Math::BigInt::Calc with some XS for more speed River stage one • 3 direct dependents • 8 total dependents

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.5018 - 06 Jan 2024 12:38:35 UTC - Search in distribution

Alt::Crypt::RSA::BigInt - RSA public-key cryptosystem, using Math::BigInt River stage one • 1 direct dependent • 4 total dependents

This is a modification of the Crypt::RSA module to remove all use and dependencies on Pari and Math::Pari. This first version is intended to be a plug-in replacement for Crypt::RSA, with no user-visible changes. This means some issues will remain unr...

DANAJ/Alt-Crypt-RSA-BigInt-0.06 - 26 Apr 2017 21:59:35 UTC - Search in distribution

Math::BigInt::Random::OO - generate uniformly distributed Math::BigInt objects River stage zero No dependents

Math::BigInt::Random::OO is a module for generating arbitrarily large random integers from a discrete, uniform distribution. The numbers are returned as Math::BigInt objects....

PJACKLAM/Math-BigInt-Random-OO-0.05 - 05 Dec 2023 15:57:14 UTC - Search in distribution
344 results (0.123 seconds)