diff options
author | xuri <xuri.me@gmail.com> | 2022-04-06 00:03:22 +0800 |
---|---|---|
committer | xuri <xuri.me@gmail.com> | 2022-04-06 00:03:22 +0800 |
commit | 5bf4bce9d41b2f8cd9d24e0d57a0d6868ef9433d (patch) | |
tree | 2e74a8018a17641889da62eab619057568e423b4 /numfmt.go | |
parent | 26174a2c43755dff794a5d2f48a0d5bdf38e5b1b (diff) |
ref #65, #1196: fix the compatibility issue and added new formula function
- New formula functions: MODE and T.TEST
Diffstat (limited to 'numfmt.go')
-rw-r--r-- | numfmt.go | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -33,9 +33,9 @@ type languageInfo struct { type numberFormat struct { section []nfp.Section t time.Time - sectionIdx int - isNumeric, hours, seconds bool - number float64 + sectionIdx int + isNumeric, hours, seconds bool + number float64 ap, afterPoint, beforePoint, localCode, result, value, valueSectionType string } |