8000 GitHub - zerodivisi0n/big: A simple wrapper for Golang's big.Float
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

zerodivisi0n/big

 
 

Repository files navigation

BIG

Big is a simple, immuatable wrapper around golang's built-in *big.Float type desinged to offer a more user-friendly API and immutability guarantees at the cost of some runtime performance.

Example

Usage is dead simple:

dec := big.NewDecimal(1.24)
addend := big.NewDecimal(3.14)

dec.Add(addend).String() // prints "4.38"

About

A simple wrapper for Golang's big.Float

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 94.3%
  • Shell 3.5%
  • Makefile 2.2%
0