From 99657750cc781e41c9c1e3be6b6316c18fc430bd Mon Sep 17 00:00:00 2001 From: joeybloggs Date: Fri, 12 Aug 2016 22:03:24 -0400 Subject: ad variable grouping logic + cleanup generated code newlines --- eo/eo.go | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) (limited to 'eo') diff --git a/eo/eo.go b/eo/eo.go index cb5ef76d..e610d1a9 100644 --- a/eo/eo.go +++ b/eo/eo.go @@ -76,32 +76,23 @@ func (eo *eo) RangePluralRule(num1 float64, v1 uint64, num2 float64, v2 uint64) // avoid allocations; otherwise just cast as string. func (eo *eo) FmtNumber(num float64, v uint64) []byte { - s := strconv.FormatFloat(num, 'f', int(v), 64) - + s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64) l := len(s) + len(eo.decimal) + len(eo.group)*len(s[:len(s)-int(v)-1])/3 - count := 0 inWhole := v == 0 - b := make([]byte, 0, l) for i := len(s) - 1; i >= 0; i-- { if s[i] == '.' { - - for j := len(eo.decimal) - 1; j >= 0; j-- { - b = append(b, eo.decimal[j]) - } - + b = append(b, eo.decimal[0]) inWhole = true continue } if inWhole { - if count == 3 { - for j := len(eo.group) - 1; j >= 0; j-- { b = append(b, eo.group[j]) } @@ -115,11 +106,16 @@ func (eo *eo) FmtNumber(num float64, v uint64) []byte { b = append(b, s[i]) } + if num < 0 { + for j := len(eo.minus) - 1; j >= 0; j-- { + b = append(b, eo.minus[j]) + } + } + // reverse for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 { b[i], b[j] = b[j], b[i] } return b - } -- cgit v1.2.3