mirror of
https://github.com/shopspring/decimal.git
synced 2024-11-22 20:40:48 +01:00
Compare commits
2 commits
8407d72bab
...
4f9175c00f
Author | SHA1 | Date | |
---|---|---|---|
|
4f9175c00f | ||
|
acffc5529c |
1 changed files with 4 additions and 3 deletions
|
@ -129,9 +129,10 @@ func NewFromBigInt(value *big.Int, exp int32) Decimal {
|
||||||
//
|
//
|
||||||
// Example:
|
// Example:
|
||||||
//
|
//
|
||||||
// d1, err := NewFromBigRat(big.NewRat(0, 1), 4)
|
// d1 := NewFromBigRat(big.NewRat(0, 1), 0) // output: "0"
|
||||||
// d2, err := NewFromBigRat(big.NewRat(4, 5), 100)
|
// d2 := NewFromBigRat(big.NewRat(4, 5), 1) // output: "0.8"
|
||||||
// d3, err := NewFromBigRat(big.NewRat(10000, 3), 300)
|
// d3 := NewFromBigRat(big.NewRat(1000, 3), 3) // output: "333.333"
|
||||||
|
// d4 := NewFromBigRat(big.NewRat(2, 7), 4) // output: "0.2857"
|
||||||
//
|
//
|
||||||
func NewFromBigRat(value *big.Rat, precision int32) Decimal {
|
func NewFromBigRat(value *big.Rat, precision int32) Decimal {
|
||||||
return Decimal{
|
return Decimal{
|
||||||
|
|
Loading…
Reference in a new issue