mirror of
https://github.com/shopspring/decimal.git
synced 2024-11-22 20:40:48 +01:00
Merge 49883997d8
into 57a340d853
This commit is contained in:
commit
374bf41c01
1 changed files with 28 additions and 0 deletions
28
README.md
28
README.md
|
@ -8,6 +8,8 @@ Arbitrary-precision fixed-point decimal numbers in go.
|
||||||
|
|
||||||
_Note:_ Decimal library can "only" represent numbers with a maximum of 2^31 digits after the decimal point.
|
_Note:_ Decimal library can "only" represent numbers with a maximum of 2^31 digits after the decimal point.
|
||||||
|
|
||||||
|
_Note:_ The library does not remove trailing zeros when parsing decimals from strings, e.g., `1.18` does not internally equal `1.1800` when parsing with this library, see example in usage
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
* The zero-value is 0, and is safe to use without initialization
|
* The zero-value is 0, and is safe to use without initialization
|
||||||
|
@ -59,6 +61,32 @@ func main() {
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Conservation of precision with trailing zeros. This conservation is, however,
|
||||||
|
not translated backwards when printing the decimal as string.
|
||||||
|
|
||||||
|
This is important to know.
|
||||||
|
|
||||||
|
```go
|
||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"github.com/shopspring/decimal"
|
||||||
|
)
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
noZeros := "1.18"
|
||||||
|
trailingZeros := "1.1800"
|
||||||
|
|
||||||
|
d1 := decimal.RequireFromString(noZeros)
|
||||||
|
d2 := decimal.RequireFromString(trailingZeros)
|
||||||
|
|
||||||
|
fmt.Println(d1.Coefficient(), d1.Exponent()) // 118 -2
|
||||||
|
fmt.Println(d2.Coefficient(), d2.Exponent()) // 118 -4
|
||||||
|
fmt.Println(d1) // 1.18
|
||||||
|
fmt.Println(d2) // 1.18
|
||||||
|
```
|
||||||
|
|
||||||
## Documentation
|
## Documentation
|
||||||
|
|
||||||
http://godoc.org/github.com/shopspring/decimal
|
http://godoc.org/github.com/shopspring/decimal
|
||||||
|
|
Loading…
Reference in a new issue