decimal
Package decimal implements immutable decimal floating-point numbers for Go.
This package is designed specifically for use in transactional financial systems.
Key Features
- Immutability - Once set, a decimal remains constant,
ensuring safe concurrent access across goroutines.
- Banker's Rounding - Uses half-to-even rounding, also known as
"banker's rounding", to minimize cumulative rounding errors commonly seen
in financial calculations.
- Accurate Artihmetic - All methods are precisely rounded to a 19-digit
precision, ensuring results are as close as possible to the true mathematical value.
- No Panics - All methods are panic-free, returning errors instead of crashing
your application in cases such as overflow or division by zero.
- No Heap Allocations - Optimized to avoid heap allocations,
reducing garbage collector impact during arithmetic operations.
- Simple String Representation - Decimals are represented in a strightforward
format avoiding the complexities of scientific or engineering notations.
- Rigorous Testing - All methods are cross-validated against
the cockroachdb/apd and shopspring/decimal packages throught extensive fuzz testing.
Getting Started
Installation
To add the decimal package to your Go workspace:
go get github.com/govalues/decimal
Basic Usage
Create decimal values using one of the constructors.
After creating a decimal, you can perform various operations as shown below:
package main
import (
"fmt"
"github.com/govalues/decimal"
)
func main() {
d, _ := decimal.New(8, 0)
e, _ := decimal.Parse("12.5")
f, _ := decimal.NewFromFloat64(2.567)
g, _ := decimal.NewFromInt64(7, 896, 3)
fmt.Println(d.Add(e))
fmt.Println(d.Sub(e))
fmt.Println(d.SubAbs(e))
fmt.Println(d.Mul(e))
fmt.Println(d.AddMul(e, f))
fmt.Println(d.SubMul(e, f))
fmt.Println(d.PowInt(2))
fmt.Println(d.Quo(e))
fmt.Println(d.AddQuo(e, f))
fmt.Println(d.SubQuo(e, f))
fmt.Println(d.QuoRem(e))
fmt.Println(d.Inv())
fmt.Println(decimal.Sum(d, e, f))
fmt.Println(decimal.Prod(d, e, f))
fmt.Println(e.Sqrt())
fmt.Println(e.Exp())
fmt.Println(e.Log())
fmt.Println(g.Round(2))
fmt.Println(g.Ceil(2))
fmt.Println(g.Floor(2))
fmt.Println(g.Trunc(2))
fmt.Println(f.Int64(9))
fmt.Println(f.Float64())
fmt.Println(f.String())
fmt.Printf("%.2f", f)
fmt.Printf("%.2k", f)
}
Documentation
For detailed documentation and additional examples, visit the package
documentation.
For examples related to financial calculations, see the money
package
documentation.
Comparison
Comparison with other popular packages:
Feature | govalues | cockroachdb/apd v3.2.1 | shopspring/decimal v1.4.0 |
---|
Speed | High | Medium | Low1 |
Mutability | Immutable | Mutable1 | Immutable |
Heap Allocations | No | Medium | High |
Panic Free | Yes | Yes | No2 |
Precision | 19 digits | Arbitrary | Arbitrary |
Correctly Rounded | Yes | No | No |
Mathematical Context | Implicit | Explicit | Implicit |
Benchmarks
goos: linux
goarch: amd64
pkg: github.com/govalues/decimal-tests
cpu: AMD Ryzen 7 3700C with Radeon Vega Mobile Gfx
Test Case | Expression | govalues | cockroachdb/apd v3.2.1 | shopspring/decimal v1.4.0 | govalues vs cockroachdb | govalues vs shopspring |
---|
Add | 5 + 6 | 16.06n | 74.88n | 140.90n | +366.22% | +777.33% |
Mul | 2 * 3 | 16.93n | 62.20n | 146.00n | +267.40% | +762.37% |
Quo | 2 / 4 (exact) | 59.52n | 176.95n | 657.40n | +197.30% | +1004.50% |
Quo | 2 / 3 (inexact) | 391.60n | 976.80n | 2962.50n | +149.39% | +656.42% |
PowInt | 1.1^60 | 950.90n | 3302.50n | 4599.50n | +247.32% | +383.73% |
PowInt | 1.01^600 | 3.45µ | 10.67µ | 18.67µ | +209.04% | +440.89% |
PowInt | 1.001^6000 | 5.94µ | 20.50µ | 722.22µ | +244.88% | +12052.44% |
Sqrt | √2 | 3.40µ | 4.96µ | 2101.86µ | +46.00% | +61755.71% |
Exp | exp(0.5) | 8.35µ | 39.28µ | 20.06µ | +370.58% | +140.32% |
Log | ln(0.5) | 54.89µ | 129.01µ | 151.55µ | +135.03% | +176.10% |
Parse | 1 | 16.52n | 76.30n | 136.55n | +362.00% | +726.82% |
Parse | 123.456 | 47.37n | 176.90n | 242.60n | +273.44% | +412.14% |
Parse | 123456789.1234567890 | 85.49n | 224.15n | 497.95n | +162.19% | +482.47% |
String | 1 | 5.11n | 19.57n | 198.25n | +283.21% | +3783.07% |
String | 123.456 | 35.78n | 77.12n | 228.85n | +115.52% | +539.51% |
String | 123456789.1234567890 | 70.72n | 239.10n | 337.25n | +238.12% | +376.91% |
Telco | (see specification) | 137.00n | 969.40n | 3981.00n | +607.33% | +2804.78% |
The benchmark results shown in the table are provided for informational purposes only and may vary depending on your specific use case.