libmath-nocarry-perl 1.115-1 source package in Ubuntu

Changelog

libmath-nocarry-perl (1.115-1) unstable; urgency=medium

  * Import upstream version 1.114.
  * Update years of upstream copyright.
  * Declare compliance with Debian Policy 4.6.0.

  * Import upstream version 1.115.
  * Update years of upstream copyright.
  * Update upstream email address.
  * Declare compliance with Debian Policy 4.6.2.

 -- gregor herrmann <email address hidden>  Sun, 04 Feb 2024 04:29:49 +0100

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
perl
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe perl
Noble release universe perl

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libmath-nocarry-perl_1.115-1.dsc 2.4 KiB 61af36bde87135e9497418bddb7d699b4644ba722d9a58eb9bae076067249edb
libmath-nocarry-perl_1.115.orig.tar.gz 10.6 KiB 05a3edb0165e1c0856d563435ba354f870050ecee3ee2ab9b104c50c5c9d3415
libmath-nocarry-perl_1.115-1.debian.tar.xz 6.6 KiB ca26313f87f342dfc03e7b13d254fa2e53b351980934e20937572ee2f19c1a7c

Available diffs

No changes file available.

Binary packages built by this source

libmath-nocarry-perl: 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.