1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
Source: libmath-nocarry-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Damyan Ivanov <dmn@debian.org>,
gregor herrmann <gregoa@debian.org>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper (>= 9)
Build-Depends-Indep: libtest-pod-coverage-perl,
libtest-pod-perl,
perl,
perl (>= 5.11.1) | libtest-simple-perl (>= 0.94)
Standards-Version: 3.9.7
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libmath-nocarry-perl.git
Vcs-Git: https://anonscm.debian.org/git/pkg-perl/packages/libmath-nocarry-perl.git
Homepage: https://metacpan.org/release/Math-NoCarry
Package: libmath-nocarry-perl
Architecture: all
Depends: ${misc:Depends},
${perl:Depends}
Description: Perl module for no carry arithmetic
The perl module Math::NoCarry implememnts no carry arithmetic which
doesn't allow you to carry digits to the next column. For example,
if you add 8 and 4, you normally expect the answer to be 12, but that
1 digit is a carry. In no carry arithmetic you can't do that, so the
sum of 8 and 4 is just 2. In effect, this is addition modulo 10 in
each column. The following example discards all of the carry digits:
.
1234
+ 5678
------
6802
.
For multiplication, the result of pair-wise multiplication
of digits is the modulo 10 value of their normal, everyday
multiplication.
|