Skip to content

ebfe/decnum

 
 

Repository files navigation

decnum

This is a Go binding around C decNumber package, for calculation with base-10 floating point numbers. Decimal data type is important for financial calculations.

The C decNumber package can be found at: http://speleotrove.com/decimal/

I downloaded the decNumber package "International Components for Unicode (ICU)".

Documentation of original C decNumber package

Its documentation is here: http://speleotrove.com/decimal/decnumber.html

More specifically, you should read these topics:

The original C decNumber package contains two kinds of data type:

  • decNumber, which contains arbitrary-precision numbers. Storage will grow as needed.
  • decQuad, decDouble, decSingle, which are fixed-size data types. They are faster than decNumber.

This Go package

This Go package only uses the decQuad data type, which is 128 bits long. It can store numbers with 34 significant digits. It is very much like the float64, except that its precision is better (float64 has a precision of only 15 digits), and it works in base-10 instead of base-2.

I have only written the following files:

The other .c and .h files in the directory come from the original C decNumber package.

The code of this Go wrapper is quite easy to read, and the pattern for calling C function is always the same. Parameters are always passed from Go to C as value, and in the other direction too. Strings are passed as array in struct, so they are passed by value too.

Installation:

go get github.com/rin01/decnum

Godoc

https://godoc.org/github.com/rin01/decnum

Example

You can find an example of use in the directory decnum/example_decnum.

https://github.com/rin01/decnum/blob/master/example_decnum/main.go

Test

The test file mydecquad_test.go is very instructive.

Run the test:

go test

About

Go binding of the C decNumber package, for calculation with base-10 floating point numbers

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 96.7%
  • Go 2.9%
  • Other 0.4%