From 89e74deb202846b809ea04e8b3501fa55a7d44bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=92=8B=E6=AF=85=E4=BF=8A?= Date: Wed, 27 Apr 2022 15:35:22 +0800 Subject: [PATCH] fix roundCeil,roundFloor,roundUp and roundDown examples --- decimal.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/decimal.go b/decimal.go index c614ea7..b3cfd1f 100644 --- a/decimal.go +++ b/decimal.go @@ -1107,7 +1107,7 @@ func (d Decimal) Round(places int32) Decimal { // NewFromFloat(545).RoundCeil(-2).String() // output: "600" // NewFromFloat(500).RoundCeil(-2).String() // output: "500" // NewFromFloat(1.1001).RoundCeil(2).String() // output: "1.11" -// NewFromFloat(-1.454).RoundCeil(1).String() // output: "-1.5" +// NewFromFloat(-1.454).RoundCeil(1).String() // output: "-1.4" // func (d Decimal) RoundCeil(places int32) Decimal { if d.exp >= -places { @@ -1133,7 +1133,7 @@ func (d Decimal) RoundCeil(places int32) Decimal { // NewFromFloat(545).RoundFloor(-2).String() // output: "500" // NewFromFloat(-500).RoundFloor(-2).String() // output: "-500" // NewFromFloat(1.1001).RoundFloor(2).String() // output: "1.1" -// NewFromFloat(-1.454).RoundFloor(1).String() // output: "-1.4" +// NewFromFloat(-1.454).RoundFloor(1).String() // output: "-1.5" // func (d Decimal) RoundFloor(places int32) Decimal { if d.exp >= -places { @@ -1159,7 +1159,7 @@ func (d Decimal) RoundFloor(places int32) Decimal { // NewFromFloat(545).RoundUp(-2).String() // output: "600" // NewFromFloat(500).RoundUp(-2).String() // output: "500" // NewFromFloat(1.1001).RoundUp(2).String() // output: "1.11" -// NewFromFloat(-1.454).RoundUp(1).String() // output: "-1.4" +// NewFromFloat(-1.454).RoundUp(1).String() // output: "-1.5" // func (d Decimal) RoundUp(places int32) Decimal { if d.exp >= -places { @@ -1187,7 +1187,7 @@ func (d Decimal) RoundUp(places int32) Decimal { // NewFromFloat(545).RoundDown(-2).String() // output: "500" // NewFromFloat(-500).RoundDown(-2).String() // output: "-500" // NewFromFloat(1.1001).RoundDown(2).String() // output: "1.1" -// NewFromFloat(-1.454).RoundDown(1).String() // output: "-1.5" +// NewFromFloat(-1.454).RoundDown(1).String() // output: "-1.4" // func (d Decimal) RoundDown(places int32) Decimal { if d.exp >= -places {