BigInteger encodes v as a query string value
(v *big.Int)
| 94 | |
| 95 | // BigInteger encodes v as a query string value |
| 96 | func (qv QueryValue) BigInteger(v *big.Int) { |
| 97 | qv.updateKey(v.String()) |
| 98 | } |
| 99 | |
| 100 | // BigDecimal encodes v as a query string value |
| 101 | func (qv QueryValue) BigDecimal(v *big.Float) { |