Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/locales.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mzn_IR/mzn_IR.go')
-rw-r--r--mzn_IR/mzn_IR.go12
1 files changed, 11 insertions, 1 deletions
diff --git a/mzn_IR/mzn_IR.go b/mzn_IR/mzn_IR.go
index 76bbabe8..1da98f1f 100644
--- a/mzn_IR/mzn_IR.go
+++ b/mzn_IR/mzn_IR.go
@@ -96,5 +96,15 @@ func (mzn *mzn_IR) FmtCurrency(num float64, v uint64, currency currency.Type) []
s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
symbol := mzn.currencies[currency]
- return []byte(s)
+ return append(append([]byte{}, symbol...), s...)
+}
+
+// FmtAccounting returns the currency representation of 'num' with digits/precision of 'v' for 'mzn_IR'
+// in accounting notation. returned as a []byte just in case the caller wishes to add more and can help
+// avoid allocations; otherwise just cast as string.
+func (mzn *mzn_IR) FmtAccounting(num float64, v uint64, currency currency.Type) []byte {
+
+ s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
+ symbol := mzn.currencies[currency]
+ return append(append([]byte{}, symbol...), s...)
}