mirror of
https://github.com/shopspring/decimal.git
synced 2024-11-22 20:40:48 +01:00
Update Rounding Examples
This commit is contained in:
parent
f55dd56454
commit
479eb53c8f
1 changed files with 4 additions and 4 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue