Compare commits

...

2 commits

Author SHA1 Message Date
Dean Eigenmann
247eeab12e
Merge 584bc5502b into 547861c49b 2024-04-03 21:21:00 +00:00
Dean Eigenmann
584bc5502b
optimize conversion 2023-09-25 17:23:17 +02:00

View file

@ -1386,10 +1386,7 @@ func (d Decimal) IntPart() int64 {
// BigInt returns integer component of the decimal as a BigInt. // BigInt returns integer component of the decimal as a BigInt.
func (d Decimal) BigInt() *big.Int { func (d Decimal) BigInt() *big.Int {
scaledD := d.rescale(0) return new(big.Int).Set(d.value)
i := &big.Int{}
i.SetString(scaledD.String(), 10)
return i
} }
// BigFloat returns decimal as BigFloat. // BigFloat returns decimal as BigFloat.