aboutsummaryrefslogtreecommitdiff
path: root/lib/math/big/big.go
AgeCommit message (Collapse)Author
2026-01-15all: convert license and copyright to use SPDX identifiersShulhan
With help of spdxconv tool [1], we able to bulk update all files license and copyright format to comply with SPDX formats. [1] https://kilabit.info/project/spdxconv/
2023-12-13all: fix linter warnings reported by reviveShulhan
There are some reports that I disagree with revive, in example, code should not declare the type after variables. In my opinion, on some cases, declaring the type make the code more readable and explicit. Since I did not want to add new configuration file, we changes it and follow revive for now.
2022-05-09all: reformat all codes using gofmt 1.19 (the Go tip)Shulhan
2020-07-06big: add global flag MarshalJSONAsStringShulhan
MarshalJSONAsString define the default return behaviour of MarshalJSON(). If its true (the default) the returned JSON format will encapsulated in double quote, as string instead of as numeric.
2020-06-10all: update email addressShulhan
2020-06-06all: use default linter optionsShulhan
2020-03-26all: fix and suppress linter warningsShulhan
2020-03-20big: new package that extends the capabilities of "math/big"Shulhan
The "big" package add custom global precision, rounding mode, and number of digit precision after decimal point for all instance of Float that use the package.