• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/Math/H10-Apr-2005-671357

Build.PLH A D10-Apr-2005170 76

ChangesH A D10-Apr-2005514 1614

MANIFESTH A D28-Sep-200383 98

META.ymlH A D10-Apr-2005267 1514

Makefile.PLH A D10-Apr-2005244 1410

READMEH A D16-Apr-2001709 1913

test.plH A D16-Apr-2001711 225

README

1This is a module for doing integer arithmetic in arbitrary base
2representations.  A representation, or "flex", is determined by
3what symbols you use for +, -, and the digits.  The base that
4you are working in is the number of digits you use to represent
5your numbers.  Given a flex it can do the following:
6
7  o Convert string representations of numbers to a convenient
8    internal form for calculations as needed.
9
10  o Convert from one internal representation to another,
11    transparently changing bases as required.
12
13  o Write the internal representation back to a string.
14
15  o Handle large integer arithmetic.
16
17A sample use would be to write 128 bit MD5 hashes using whatever
18set of characters you want.
19