1Math::BigInt::GMP(3) User Contributed Perl Documentation Math::BigInt::GMP(3)
2
3
4
6 Math::BigInt::GMP - backend library for Math::BigInt etc. based on GMP
7
9 # to use it with Math::BigInt
10 use Math::BigInt lib => 'GMP';
11
12 # to use it with Math::BigFloat
13 use Math::BigFloat lib => 'GMP';
14
15 # to use it with Math::BigRat
16 use Math::BigRat lib => 'GMP';
17
19 Math::BigInt::GMP is a backend library for Math::BigInt,
20 Math::BigFloat, Math::BigRat and related modules.
21
22 Math::BigInt::GMP provides support for big integer calculations by
23 means of the GMP C library. See <https://gmplib.org/> for more
24 information about the GMP library.
25
26 Math::BigInt::GMP no longer uses Math::GMP, but provides its own XS
27 layer to access the GMP C library. This cuts out another (Perl
28 subroutine) layer and also reduces the memory footprint.
29
30 Math::BigInt::GMP inherits from Math::BigInt::Lib.
31
33 Please report any bugs or feature requests to "bug-math-bigint-gmp at
34 rt.cpan.org", or through the web interface at
35 <https://rt.cpan.org/Ticket/Create.html?Queue=Math-BigInt-GMP>
36 (requires login). We will be notified, and then you'll automatically
37 be notified of progress on your bug as I make changes.
38
40 You can find documentation for this module with the perldoc command.
41
42 perldoc Math::BigInt::GMP
43
44 You can also look for information at:
45
46 · RT: CPAN's request tracker
47
48 <https://rt.cpan.org/Dist/Display.html?Name=Math-BigInt-GMP>
49
50 · AnnoCPAN: Annotated CPAN documentation
51
52 <http://annocpan.org/dist/Math-BigInt-GMP>
53
54 · CPAN Ratings
55
56 <http://cpanratings.perl.org/dist/Math-BigInt-GMP>
57
58 · Search CPAN
59
60 <http://search.cpan.org/dist/Math-BigInt-GMP/>
61
62 · CPAN Testers Matrix
63
64 <http://matrix.cpantesters.org/?dist=Math-BigInt-GMP>
65
66 · The Bignum mailing list
67
68 · Post to mailing list
69
70 "bignum at lists.scsys.co.uk"
71
72 · View mailing list
73
74 <http://lists.scsys.co.uk/pipermail/bignum/>
75
76 · Subscribe/Unsubscribe
77
78 <http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/bignum>
79
81 This program is free software; you may redistribute it and/or modify it
82 under the same terms as Perl itself.
83
85 Tels <http://bloodgate.com/> in 2001-2007.
86
87 Thanks to Chip Turner (CHIPT on CPAN) for providing Math::GMP, which
88 was inspiring my work.
89
91 Math::BigInt::Lib for a description of the API.
92
93 Alternative libraries Math::BigInt::Calc, Math::BigInt::FastCalc, and
94 Math::BigInt::Pari.
95
96 Some of the modules that use these libraries Math::BigInt,
97 Math::BigFloat, and Math::BigRat.
98
99
100
101perl v5.32.0 2020-07-28 Math::BigInt::GMP(3)