How can we easily see the float value of decimal.Decimal value in delve session.
especially in dlv replay session recorded by mozilla rr.
(dlv) args
underlyingPx = github.com/shopspring/decimal.Decimal {value: ("*math/big.Int")(0xc00101cca0), exp: 3}
(dlv) p underlyingPx
github.com/shopspring/decimal.Decimal {
value: *math/big.Int {
neg: false,
abs: math/big.nat len: 1, cap: 1, [8],},
exp: 3,}
Thanks